PureBytes Links
Trading Reference Links
|
Hello,
I'm trying to keep my IB and BT the same, but I see that
when using settradedelays(1,0,0,0) does not produce correct
arrows in IB when using plotshapes and equity. The delay
is not taken into account when plotted on an indicator. Am I
missing something here ? (one could use buy=ref(DSS,-1) but
then BT code is not the same anymore)
Is there a solution ???
Thanks
Leo
A = EMA((Close-LLV(Low,8))/(HHV(H,8)-LLV(L,8)),8)*100;
DSS = EMA((A-LLV(A,8))/(HHV(A,8)-LLV(A,8)),1)*100;
barcolor=IIf(DSS<10,colorYellow,colorBlue);
//Graphics
GraphXSpace=5;
Plot(C,"DSS",ValueWhen(barcolor!=0,barcolor),styleCandle);
//Backtester settings
SetTradeDelays(1,0,0,0);
//SetOption("AllowSameBarExit",False);
//SetOption("ActivateStopsImmediately",False);
//SetOption("AllowPositionShrinking",True);
//typeLoss=2;typeProfit=3;typeTrailing=4;typeNBar=6;
//BuyStop=Ref(H*1.005,-1);
//Buy=Cross(H,BuyStop) AND (Ref(DSS,-1)<5);
//BuyPrice=BuyStop;
Buy=Cross(DSS,5);
Sell=Cross(98,DSS);
//Sell=0;
//ApplyStop(stopTypeProfit,stopModePercent,1,True);
//ApplyStop(stopTypeTrailing,stopModePercent,3,True);
//ApplyStop(stopTypeNBar,stopModeBars,10);
Equity(1,0);
PlotShapes(IIf(Buy,shapeUpArrow,shapeNone),colorGreen,0,L-0.1*ATR
(1));
PlotShapes(IIf(Sell,shapeDownArrow,shapeNone),colorRed,0,H+0.1*ATR
(1));
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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/
|