PureBytes Links
Trading Reference Links
|
Hi,
i added all you suggested but for some reason the sellprice is just
shown to be same as buy price in explorer.
Specifically im testing entries with time exits. i wrote:
Buy = .........;
sell = 0;
applystop = (stopTypeNbar,stopModeBars, 10);
Equity(1,0)
Filter = Buy;
Filter = Sell > 0;
addcolumn(buyprice,"bp",1.3);
addcolumn(sellprice,"sp",1.3);
I'm trying to see all the entries with their time exits even if a
position is open on a symbol already so i can't use backtester.
Can someone pls tell me what im doing wrong here?
Thanks in advance.
> If you add this after the applystop
>
> Appplystop( .................);
> Equity(1,0);
>
> this gives numbers to the sell signals, see help - applystop for
what these
> numbers are
> Also check with the equity function as to the required numbers to have
> inside the brackets (1,0) I know allows for this in charts alloowing to
> ignore the last analysis dates range
> you can then explore for when the sell occurs
> filter = sell>0;
> addcolumn(sellprice,"sp",1.3);
>
>
>
> --
> Cheers
> Graham
> AB-Write >< Professional AFL Writing Service
> Yes, I write AFL code to your requirements
> http://www.aflwriting.com
Content-Description: "AVG certification"
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.409 / Virus Database: 268.13.27/517 - Release Date: 11/3/2006
|