PureBytes Links
Trading Reference Links
|
Hi All.
My first post here. Without seeking to offend anyone here, the training mode available in FCPro may be what is being asked for here. (Go to http://members.iinet.net.au/~simonh/spacejock/ )
I don't think the free version of the charting program has it, but certainly I have it in the FCPro version.
With a chart open I simply shift + Left arrow and chart "goes back" one day (hides last day). If I go shift + down arrow it moves the chart back by one week at a time.
I can go back to any point in time by simply going Control + Left click. It then hides all data after that date. I can then go forward one day at a time by Shift + Right Arrrow.
I find this real handy to "manually" backtest and watch the progression.
I only mention this because this may be quite simple to code ( I am a non-coder so may need to stand corrected.)
No one charting programme has it all, although the more I learn about AB the more I see that AB is fast becoming all inclusive.
Regards
Chris BertkeStephane Carrasset <s.carrasset@xxxxxxxxxxx> wrote:
or better
rm=Param("",0,0,BarCount,1);
----- Original Message -----
From: anthony
To: amibroker@xxxxxxxxxxxxxxx
Sent: Tuesday, July 27, 2004 7:57 AM
Subject: [amibroker] Re: Training mode.
I've got it!Quick simple anyone can use!It requires no coding mostly!Just a lot of patients and easy to stuff up or (cheat).Put a blank page or folder over your screen.But honestly if it realy does come to that there must be a place to have this function properly writen in AB.One question about this code, I get- "Variable 'rm' used without having been initialized."Error in this code when I installed it.Z = Null;LB =LastValue(BarIndex());O = IIf(BarIndex()>(LB-RM),Z,O);H = IIf(BarIndex()>(LB-RM),Z,H);L = IIf(BarIndex()>(LB-RM),Z,L);C = IIf(BarIndex()>(LB-RM),Z,C);// Just an example systemStochRsi=EMA((RSI(8)-LLV(RSI(8),8))/(HHV(RSI(8),8)-LLV(RSI(8),8)),3)*100;Buy=Cross(17,StochRsi) AND Ref(MA(C,21),-1) < MA(C,21);;Sell=Cross(StochRsi,83);Short=Cross(StochRsi,83) AND Ref(MA(C,21),-1) >
MA(C,21);Cover=Cross(17,StochRsi);Plot(C,"Close",2,1);PlotShapes(IIf(Buy,shapeUpArrow,IIf(Short,shapeDownArrow,shapeNone)),IIf(Buy,colorBrightGreen,IIf(Short,colorRed,colorBlack)));Thanks Ant.CheersChriskris45mar@xxxxxxxxx
Do you Yahoo!?
New and Improved Yahoo! Mail - Send 10MB messages!
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
ADVERTISEMENT
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 the Yahoo! Terms of Service.
|