Need some help!
Need some help!
26 Aug 2018, 21:15
Can someone fix this for me?
I need this:
the difference between MarketSeries.High.Last(1) and MarketSeries.Low.Last(1) = 100 % and more then (number of pips).
then if the difference between MarketSeries.Low.Last(1) and MarketSeries.Close.Last(1) = more then 50% of the candle
{
Buy signal = true.
Else if the difference between MarketSeries.High.Last(1) and MarketSeries.Close.Last(1) = more than 50% of the candle
{
Sell signal = true.
Thanks,
Jelle
Replies
jelle2500
27 Aug 2018, 10:52
RE: RE:
patrick.sifneos@gmail.com said:
Hey Jelle
Difference in Pips:
(MarketSeries.High.Last(1) - MarketSeries.Low.Last(1)) / Symbol.PipSizeSo this part (and more then a number of pips) is solved then.
thanks!
jelle2500 said:
Can someone fix this for me?
I need this:
the difference between MarketSeries.High.Last(1) and MarketSeries.Low.Last(1) = 100 %
and more then (number of pips).then if the difference between MarketSeries.Low.Last(1) and MarketSeries.Close.Last(1) = more then 50% of the candle
{
Buy signal = true.
Else if the difference between MarketSeries.High.Last(1) and MarketSeries.Close.Last(1) = more than 50% of the candle
{
Sell signal = true.
Thanks,
Jelle
@jelle2500
sifneos4fx
27 Aug 2018, 10:17
RE:
Hey Jelle
Difference in Pips:
jelle2500 said:
@sifneos4fx