PureBytes Links
Trading Reference Links
|
You may need to play around with ExRem and perhaps Flip functions.
Maybe something like:
short=exRem(short,sell);//short only after a sell
You have to be careful though in using these functions since they
essentially 'block' signals until a condition is met. The above
statement would mean you wouldn't go short until you had a sell. In
order to have sell, you need a long.
Remember that ApplyStop doesn't actually return anything...
Regards
Sam
--- In amibroker@xxxxxxxxxxxxxxx, "ezbentley" <ezbentley@xxxx> wrote:
>
>
> Hi:
>
> My code is as follows:
>
> ApplyStop ( stopTypeTrailing, stopModePercent, 5, True);
> Buy = // some condition
> Sell = 0;
> Short = // some condition
> Cover = 0;
>
> Once I enter a long position, I want the stop to be the only way to
> exit the market,
> even if a SHORT signal occurs. In other words, I want to ignore the
> SHORT signal until
> the stop has been touched. With my current code, the SHORT signal
> will cover the
> long position and establish another SHORT position, which is not my
> intent.
>
> Is there a way to detect if a position already exists or to ignore
> the SHORT until after
> the stop has been taken out?
>
> I am a newbie. Any help will be greatly appreciated.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/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/
|