ความคิดเห็นที่ 8
ขอบคุณครับ
อ่านตาม link เลยลองเขียน code นั่งเทียนดู เล่น ๆ ได้กราฟแท่งเทียนอีกแบบหนึ่ง
//Heikin-Ashi for amibroker
xClose = (Open+High+Low+Close)/4; //O Average price of the current bar
xOpen = (Ref(O,-1) + Ref(C,-1))/2; //O Midpoint of the previous bar
xHigh = Max(Max(High, xOpen), xClose); //O Highest value in the set
xLow = Min(Min(Low, xOpen), xClose); //O Lowest value in the set
PlotOHLC( xOpen, xHigh,xLow, xClose, "heikin", 64, style = styleCandle | styleOwnScale);
จากคุณ :
morefunthai
- [
วันอาสาฬหบูชา 10:46:25
]
|
|
|