PureBytes Links
Trading Reference Links
|
Hi,
I have not tested it but I think something like this should work:
Steve
--------------------------------------------------
Buy = 1;
Sell = 1;
BuyPrice = Open;
GainedTen = IIf( ( High - Open ) >= 10, 1, 0 );
SellPrice = IIf( GainedTen, Open + 10, Close );
----- Original Message -----
From: "flintstone007fred" <fred-dragon@xxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, June 09, 2005 6:21 AM
Subject: [amibroker] please help with this stupid simple code,
> Good morning,
>
> I want to start learning AFL with this simple stupid code, but I am
> not getting further.
>
> Buy=Open;
> conditionsell=IIf ((H-O)>10,SellPrice=(Open+10),SellPrice=Close);
> Sell=Conditionsell;
>
> this should just buy at the opening and sell if the Dow Jones is going
> up 10 Points. The profit should be 10 Points.
> If the Dow is not going up 10 points the position should be closed at
> the end of the day.
>
> The backtest with this code is giving me daily results with just a buy
> at the opening and sell at the close.
>
> What is wrong ? pls help ?
>
>
>
>
>
>
> 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
>
>
>
>
>
>
>
------------------------ 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/
|