|
范例
bar内模式下,如果最新价大于上一根bar的收盘价,在当前bar的最高价位置输出文本 UpT:
[RecoverDrawings = false];
If (close > close[1] )Then
text_new(date ,time ,high,"UpT");
bar内模式下,如果最新价大于上一根bar的收盘价,当根bar最后一次条件成立时,最高价位置输出的 UpT:
[RecoverDrawings = true];
If (close > close[1] )Then
text_new(date ,time ,high,"UpT");
|