Multichart 指標的寫法
在 tradestation 中看見一指標在買賣訊號出現時可出示圓點, 因此指標是 protected, 看不到 easy language 程式 , 有沒有人知在 easy language 中如何做到這效果?
這樣?
plot1(RSI(C,9));
if RSI(C,9)>70 then
value1=arw_new_self(D,T,RSI(C,9),false);
if RSI(C,9)<30 then
value2=arw_new_self(D,T,RSI(C,9),true);
arw_setcolor(value1, yellow);
arw_setcolor(value2, cyan);
謝謝! 在 internet 找到arw_new_self 的定義
Arw_New_Self(BarDate, BarTime, PriceValue, Direction)
Direction - a logical expression specifying the direction of the arrow; True = Down and False = Up 祝大家操作順利賺大錢囉~! 請問畫線是用plot 函數,若是要畫柱狀圖 (ex.紅買綠賣),是用什麼函數呢?
謝謝大家 找到惹~~
PlotPaintBar()
頁:
[1]