ClosePrice:=if(BarsCount(Close)=1 , (Open+High+Low+Close)/4 , Close);
OpenPrice:=if(BarsCount(Close)=1 , (Open+Close)/2 , Sma(ref(ClosePrice,1),2,1));
HighPrice:=High;
LowPrice:=Low;
StickLine( OpenPrice<ClosePrice , HighPrice , LowPrice , 0.1 , 0 ) , ColorRed ;
StickLine( OpenPrice<ClosePrice , ClosePrice , OpenPrice, 7 , 1 ) , ColorRed ;
StickLine( OpenPrice>ClosePrice , HighPrice , LowPrice , 0.1 , 0 ) , ColorCyan ;
StickLine( OpenPrice>ClosePrice , ClosePrice , OpenPrice , 7 , 0 ) , ColorCyan ;
StickLine( OpenPrice=ClosePrice and ClosePrice>=Ref( ClosePrice , 1 ) , HighPrice , LowPrice , 0.1 , 0 ) , ColorRed ;
StickLine( OpenPrice=ClosePrice and ClosePrice>=Ref( ClosePrice , 1 ) , ClosePrice , OpenPrice , 7 , 0 ) , ColorRed ;
StickLine( OpenPrice=ClosePrice and ClosePrice<Ref( ClosePrice , 1 ) , HighPrice , LowPrice , 0.1 , 0 ) , ColorCyan ;
StickLine( OpenPrice=ClosePrice and ClosePrice<Ref( ClosePrice , 1 ) , ClosePrice , OpenPrice , 7 , 0 ) , ColorCyan ;
StickLine( OpenPrice=ClosePrice and Barscount(Close) , HighPrice, LowPrice, 0.1, 0 ) , ColorRed ;
StickLine( OpenPrice=ClosePrice and Barscount(Close) , OpenPrice , ClosePrice , 7 , 0 ) , ColorRed ;
__________________
E-Trader World 交易世界、
Plurk、
Facebook、
Twitter
(EQ:情緒智商) & (HD:習慣領域)才是主導成功交易的重要關鍵。
「存於一個人自身的真相非常簡單,然而人們卻總是追求深奧的真理。」,金融交易亦是如此。
|