PureBytes Links
Trading Reference Links
|
Oops. Use Flip instead of ExRem. This gives all 1's (True) from Buy
to Sell. (ExRem deletes extra signals.)
Terry wrote:
I'm thinking this might work. Note that this will NOT work in the
reverse (for holding on to a Short position) due to the order of
execution.
ApplyStop ( stopTypeTrailing, stopModePercent, 5, True);
Buy = // some condition
Sell = 0;
onBuy = ExRem(Buy,Sell);
Short = some condition AND NOT onBuy
Cover = 0;
Terry
ezbentley 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 --------------------~-->
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/
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
|
|