PureBytes Links
Trading Reference Links
|
Tomasz
Thanks.
This works fine.
Chris Bertke
Tomasz Janeczko <amibroker@xxxxxx> wrote:
Chris,
Similar functionality is available via Simulator program:
http://finance.groups.yahoo.com/group/amibroker/files/Simulator124.zip
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: Chris Bertke
To: amibroker@xxxxxxxxxxxxxxx
Sent: Thursday, July 29, 2004 2:59 PM
Subject: Re: [amibroker] Re: Training mode.
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 Bertke
Stephane 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 system
StochRsi=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.
Cheers
Chris
kris45mar@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
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups SponsorADVERTISEMENT
---------------------------------
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.
Cheers
Chris
kris45mar@xxxxxxxxx
---------------------------------
Do you Yahoo!?
Yahoo! Mail is new and improved - Check it out!
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar.
Now with Pop-Up Blocker. Get it for free!
http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
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/
|