Swing Trading Idea
-
Hi Guys, just as an idea
Find the highest high and the Lowest low over a 10 bar period give or take a bar or 2.
then divide 2 to find the pivot point.
Sell entry: The current price is over the pivot but below the highest high
Buy entry: The current price is below the pivot but above the Lowest lowNot sure about the exit maybe on the reverse or with a Trailing stop or just modify stops.
https://fxdreema.com/shared/Q1xSfmmyc
I am still working on the logic for this as I am not sure its correct
-
yes that correct so far. good idea
-
Hello, can someone please point me in the right direction I need to fine the highest high and the lowest low inorder to find the pivot point.
iHighest(NULL,0,MODE_CLOSE,10,0);
iLowest(NULL,0,MODE_CLOSE,10,0);is the above correct?
-
@sibkis You are using the highest price on blocks 3 and 7. Shouldn't it be the lowest instead for sells?
-
@l-andorrà Good Spotting Sir