When to enter trades

Posted By: nanotir

When to enter trades - 11/02/15 15:24

Hi

I wonder if there is a rule or a "make sense way" to decide when to use price(); or priceClose(); to enter trades.
Something like:
For breakouts => priceHigh();
For valleys => price();
For cross thresholds => priceClose();
Posted By: boatman

Re: When to enter trades - 11/02/15 22:38

price() returns the mean price of a candle. In general, it will reduce the effect of outlying or random ticks and result in a more stable system. In general, you should use price() wherever possible.

Some systems however will require the high, low or close by their nature. For example, a Donchian channel based system would need to use the highs and lows.

So the short answer is....it depends on your system. You can always try different methods and compare the results to see the effects on an individual system.
Posted By: nanotir

Re: When to enter trades - 11/03/15 02:46

Thanks for the aclaration laugh
© 2024 lite-C Forums