PureBytes Links
Trading Reference Links
|
I cannot seem to get backtest OR explore to show the results that i
get with the arrows, any help? I have gone into the study properties
and correctly set it to "RE" etc
// File: EXP - Line Studies
// A scan will detect interaction with manually drawn trendline
Plot(Close,"",colorBlack,styleLine);
Buy = 0;
L_UP = Cross(Study("RE",GetChartID()),C);
//L_UP=IIf(C>Study("AC",GetChartID()),1,0);
L_ST = Cross(Study("SU",GetChartID()),C);
//L_ST = IIf(Study("AB",GetChartID())<C,1,0);
Shape1 = IIf(L_UP,shapeDownArrow,shapeNone);
Shape2 = IIf(L_ST,shapeDownArrow,shapeNone);
PlotShapes(shape1,colorRed,0,H,-20);
PlotShapes(shape2,colorYellow,0,H,-20 );
Filter = L_ST OR L_Up;
Buy=IIf(L_UP>0,1,0);
Short=IIf(L_ST>0,1,0);
Sell=0;
Cover=0;
AddColumn(Close,"Close");
AddColumn(L_ST,"DN");
AddColumn(L_UP,"UP");
thanks
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|