PureBytes Links
Trading Reference Links
|
Yes, this code turns on the visual display of applystop. Thanks!
//Re-calculate sell/cover arrays from application of stops
if (Status("action") != 5) //We don't use Equity(2) for Backtest mode
Equity(2);
--- In amibroker@xxxxxxxxxxxxxxx, "JD Fagan" <jd.fagan@xxxx> wrote:
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Phsst" <phsst@xxxx> wrote:
> >
> > Terry <MagicTH@xxxx> wrote:
> > > I believe you have to use the equity(1,0); statement to get
stops to
> > > show up in charts. Look it up in Help. Insert that line before
your
> > plot statements...and you must have the symbol you're testing
> > selected, which is a problem if your using more than one ticker.
> >
> > Tried using equity(1,0);
> >
> > The Equity statement does not seem to have anything to do with
forcing
> > the Exit arrows to display when exits are generated from
ApplyStop
> > statements.
>
> Try this bit of code..
>
> //Re-calculate sell/cover arrays from application of stops
> if (Status("action") != 5) //We don't use Equity(2) for Backtest
mode
> Equity(2);
>
> PlotShapes(Buy * shapeUpArrow, colorGreen);
> PlotShapes((Sell == 4) * shapeDownArrow, colorRed);
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|