SELECT *, SUM(tbl.relevance) AS relevance FROM
(
(
SELECT q_id,
MATCH(a_content) AGAINST ('бутон') AS relevance
FROM answers
WHERE
MATCH(a_content) AGAINST ('бутон')
)
UNION
(
SELECT q_id,
(MATCH(q_content) AGAINST ('бутон')) * 1.5 AS relevance
FROM questions
WHERE
MATCH(q_content) AGAINST ('бутон')
)
) AS tbl
JOIN questions ON questions.q_id = tbl.q_id
GROUP BY tbl.q_id
ORDER BY relevance DESC
Ich habe einen Pinescript-Indikator mit mehreren Zeitrahmen, den ich in einen Ctrader-Indikator umwandeln möchte. Dies sind die Regeln für die Berechnung:
I c h h a b e e i n e B a s e 6 4 - Z e i c h e n f o l g e w i e : M F Q A A A h Y d H 2 o w l g R I L L m 9 J 8 T F F s F S Y 2 a W N n 9 j W J v s s w f p L M m w O i n F 4 9 4 H 2 v K 1 c p v 6 f...
Ich weiß, dass die Typkonvertierung aufgrund der Art und Weise, wie Gleitkommazahlen im Binärformat gespeichert werden, zu kleinen Fehlern führen kann. Ich habe zwar den Anwendungsfall, einen Float...