PureBytes Links
Trading Reference Links
|
Seems like Multiple Number of Formulas merged. What should really trigger a
Buy / Sell????
Cheers
Prashanth
----- Original Message -----
From: "vin" <vins1432000@xxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Wednesday, September 03, 2008 17:28
Subject: [amibroker] how to use this formula for eod & how to find next day
buy & sell signal help me
--- In amibroker@xxxxxxxxxxxxxxx, "vin" <vins1432000@xxx> wrote:
i want to use this formula for eod for next day buy sell but i am
getting problem how to work with this. also i want buy & sell alert
with buy price & sell price along wth buy sell arrorowsin graph.
kindly help me this formula in all level correct it if its wrong. also
backtest, exploration, also create text alert for buy & sell signal
genarates.
formula is here
// **************************
// BEING EXPLORATION CODE
// **************************
// -- what will be our lookback range for the hh and ll?
nBars = Param("Number of bars", 12, 5, 40);
bTrace = Param("Include trace output", 1, 0, 1);
nNoPivsInSetup = Param("No. Pivs in Setup", 4, 3, 4, 1);
bShowTCZ = Param("Show TCZ", 1, 0, 1);
nMinBarsBtwPivs = Param("Min. number of bars btw. pivots", 1, 1, 10, 1);
nMinPctBtwPivs = Param("Min. percent diff. btw. pivots", .05, .04, .2,
.01);
bLastBarCanBePiv = Param("Last bar can be a pivot", 1, 0, 1);
retrcTolerance = .01;
tczTolerance = .005;
nNumBarsToScan = 120;
// -- added from exploration version 20040204
nExploreBarIdx = 0;
nExploreDate = 0;
nCurDateNum = 0;
DN = DateNum();
DT = DateTime();
// -- key exploration variables
bTCZLong = Buy =False;
bTCZShort = Sell =False;
nAnchorPivIdx = 0;
ADX8 = ADX(8);
<Clipped>
------------------------------------
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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|