Formula Writing 1000 Questions 23-24

23. Q:
Great formula! ! ! help! a:=MA(WINNER(CLOSE),9)*100; b:=CROSS(a,1.8); d:=b>0; DRAWICON(d,LOW,1); DRAWTEXT(d,LOw,'bottom' )coloryellow; LC:=REF(CLOSE,1); RSI:=SMA(MAX(CLOSE-LC,0),6,1)/SMA(ABS(CLOSE-LC),6,1)*100; e: =CROSS(83,RSI); DRAWICON(e,high,2); DRAWTEXT(e,HIGH,'top') COLORff9966; Please make this formula into a stock selection formula Answer (zjz001424): a:=MA(WINNER( CLOSE),9)*100; b:=CROSS(a,1.8); Bottom:b>0; LC:=REF(CLOSE,1); RSI:=SMA(MAX(CLOSE-LC,0),6, 1)/SMA(ABS(CLOSE-LC),6,1)*100; Top: CROSS(83,RSI); QUOTE: 24. Q: After the common indicators of FXJ are set, how can I turn them over? Answer (vkioli2): Press 〖/〗 or 〖*〗 on the small keyboard QUOTE: 25. Q: I want to ask in Feihu: The closing price is less than 15 points below the 20-day moving average (infinitely less than the 20-day moving average, that is to say, two Ten dots are also acceptable) expression? Just compile the stock selection formula and answer (laid-off elderly): C<(MA(C,20)-15);

Guess you like

Origin blog.csdn.net/qq974416775/article/details/129458459