PureBytes Links
Trading Reference Links
|
Ken, Bob, Herman, Peter,
Ok - I
will definatly add that to the notes header. (Must be run with QuickAFL
disabled)
Your right - Some instructions may be of assistance.
Basicaly - The code is for tracking individual trades you have
made.
It is only setup for Long Trades - But Im sure it wouldn't be hard to add
shorts.
Here is a step by step walkthough useage:
Setup:
Ensure QuickAFL tm. is Disabled.
Ensure there is a Directory called "Data" in the AmiBroker
Folder.
Writing Data:
Select a bar via mouse.
Go into Parameters Dialog (CTRL-R or RightMouseClick/Params).
Slide the Lock/Set to the SET position.
Adjust the buy price, Stops, Cash(Equity) and Commision.
You will
notice Values change on the Indicator pane as you do this.
When you are satisfied with set values,
You
MUST Slide the Lock/Set Back to LOCK.
(A Small
TXT file should have been written in the Amibroker/Data dir).
Operation:
When ticker is selected,
If Data file is available - Then Set values are Loaded.
You may then also select various bars to see the change in the trades equity and Trail Stop Percentage.
Ammendments:
I have added the ability to draw trailstop line Backward (If bar Previous to HighestHigh is selected).
Please Search and replace the following one line:
Line = LineArray(x0,y0,x1,y1,0);
With This line:
Line = IIf((X1 > X0),LineArray(x0,y0,x1,y1,0),LineArray(x1,y1,x0,y0,0));
Pending:
Some sort of Alert function to notify user of any Stop's being hit.
Easily added for single stock selection check.
I was thinking of a LIST that can be Looped through......
Comments welcome!
All the best,
Michael.S.G.
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 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.
|