Seems like Multiple Number of Formulas merged. What should really trigger a Buy / Sell????
Cheers Prashanth ----- Original Message ----- From: "vin" <[EMAIL PROTECTED]> To: <[email protected]> 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 [email protected], "vin" <[EMAIL PROTECTED]> 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>
