PureBytes Links
Trading Reference Links
|
Got It, Thanks. Here is What I did. Now I am wondering, How can I Check if The Price of Today's Bar Rallied to the Mid point of Yesterday's Bar. Is that even Possible. So If Yesterday's Bar was O-2 H-4 L-1 C-2.5. I want to Make Sure that Today's Price rally to 3 Before I do a buy signal.
//Larry Williams OOPS Pattern
PositionSize = MarginDeposit = 1;
PointValue=1;
sellDelay = Optimize("sellDelay",1,1,50,1);
coverDelay=Optimize("coverDelay",1,1,50,1);
Buy = O<Ref(L,-1);
BuyPrice=Ref(L,-1);
Sell = BarsSince(Buy) == sellDelay;
SellPrice = O;
Short = O>Ref(H,-1);
ShortPrice=Ref(H,-1);
Cover=BarsSince(Short)==CoverDelay;
CoverPrice=O;
Filter=Buy OR Sell;
--- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <groups@xxx> wrote:
>
> SetTradeDelays( 1, 1, 1, 1 );
> BuyPrice = Open;
> SellPrice = Open;
>
> Best regards,
> Tomasz Janeczko
> amibroker.com
> ----- Original Message -----
> From: "haiguise" <sherif626@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Wednesday, July 29, 2009 8:14 PM
> Subject: [amibroker] Exit on Next Day Open
>
>
> >I have been searching the message board for this answer but I seem to not be able to get an answer. I am creating a System what I
> >want to do is Sell Today at the Open Price (Simple) and then Next Day Sell on the Open. How Do I write in AFL to sell Next Day.
> >Thanks
> >
> >
> >
> > ------------------------------------
> >
> > **** IMPORTANT PLEASE READ ****
> > This group is for the discussion between users only.
> > This is *NOT* technical support channel.
> >
> > TO GET TECHNICAL SUPPORT send an e-mail directly to
> > SUPPORT {at} amibroker.com
> >
> > TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
> > http://www.amibroker.com/feedback/
> > (submissions sent via other channels won't be considered)
> >
> > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> > http://www.amibroker.com/devlog/
> >
> > Yahoo! Groups Links
> >
> >
> >
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
|