PureBytes Links
Trading Reference Links
|
ES=O>Ref(O,-1);
Buy=ES;
EntryPrice=ValueWhen(ES,O);
Sell=Cross(O,EntryPrice);
Stephane, maybe I'm stupid but it doesn't works for me.
He don't sell when O cross entryprice.
Thank you anyway
---
Giuseppe
--- In amibroker@xxxxxxxxxxxxxxx, "Stephane Carrasset"
<nenapacwanfr@xxxx> wrote:
>
> example
>
> BuyCond=Cross(MFI(14),50);
> //for(i=0; i<BarCount-1;i++)
> BuyPr=ValueWhen(BuyCond,C);
> Plot(C,"Close", colorBlack, styleCandle);
> Buy=Cross(O,BuyPr);
> Plot(BuyPr, "",2,1);
> PlotShapes( Buy, colorGreen,0, L,-10 );
>
> >
> > I want to sell if today open is greater then last entry price
(last
> > time I bought)
> > BuyPrice is set to Open.
> >
> > Buy=O>Ref(O,-1);
> > EntryPrice=ValueWhen(Buy,BuyPrice,0);
> >
> > Sell=O>EntryPrice;
> >
> > Why this formula doesn't works fine?
> >
> > Thanks
> >
> > ---
> > Giuseppe
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/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/
|