- Search Energy EXCH
- 274 Results (15 Threads, 259 Replies)
-
fxanalysis replied Dec 4, 2021you can also check the candle count for strong bars. Added Print("Candle count = ",cnGrn); int minGrn=3; // (changed) int MAStrSf=0; int MAEndSf = 0; int cnGrn=0; bool checkStart=false; bool signalFound=false; for(int i=1; i<=600; i++) { double ...
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Dec 4, 2021it is also possible that large bullish candles were not found, that's why there could be 0||0
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Dec 4, 2021Here , do some debugging, find the problem Added print() to print out all the start and end shifts indicator finds int minGrn=3; // (changed) int MAStrSf=0; int MAEndSf = 0; int cnGrn=0; bool checkStart=false; bool signalFound=false; for(int i=1; ...
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Dec 4, 2021just added break; in one more place. Originally it was not needed there, as the code was made to be in one loop only, but now because there is a second loop it is needed to stop the second loop. int minGrn=3; // (changed) int MAStrSf=0; int MAEndSf ...
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Dec 4, 2021added end shift int minGrn=3; // (changed) int MAStrSf=0; int MAEndSf = 0; int cnGrn=0; bool checkStart=false; bool signalFound=false; for(int i=1; i<=600; i++) { double MA0=iMA(symbol,5,5,0,3,0,i), MA1=iMA(symbol,5,5,0,3,0,i+1); double ...
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Dec 3, 2021You added the if in the wrong place.. What I meant was inside the loop after all the existing code. And again there was problem with i>=1 and iMA(1-3 shift?) int minGrn=4; int MAStrSf=0; int cnGrn=0; bool checkStart=false; bool signalFound=false; ...
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Dec 3, 2021Sorry forgot to add one thing - turn checkStart to false in if if(cn==1&&checkStart){ checkStart=false; cnGrn=0; MA2Dp1UpSf=0;}
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Dec 3, 2021In the 2nd loop at the end of everything add an if to check if search has reached last candle if loop while condition is ;cn>=1;cn--) then add an if like this if(cn==1&&checkStart){ cnGrn=0; MA2Dp1UpSf=0;}
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Nov 28, 2021Different signals/pointers are pointing to possibility of some certain market behavior. One signal may point to possible large move, other may point to more range like behavior. Each would have different RR and that would change the necessary win ...
It's Unreliable
-
fxanalysis replied Nov 28, 2021Liquidity providers use computers to handle small retail trader positions. Brokers are just intermediaries. Brokers may provide direct access to liquidity provider or larger brokers may act as liquidity providers themselves.
It's Unreliable
-
fxanalysis replied Nov 28, 2021Regarding forex tick volume, open account with broker which provides FX futures. Do some research and see for yourself if tick volume has any premise.
It's Unreliable
-
fxanalysis replied Nov 28, 2021If I understood correctly then what you are talking about is edge from the signal alone. Guessing that you suggest use of equal TP/SL in order to measure win ratio and thus edge. Is that the reason you refer to 50% win rate as minimum so much? ...
It's Unreliable
-
fxanalysis replied Nov 26, 2021In the first link is keltner indicator with multiplier in inputs
I will code your EAs and Indicators for no charge
-
fxanalysis replied Nov 26, 2021Either you are looking for keltner channel or envelopes url url First link keltner ch indi Second link is MTF envelopes
I will code your EAs and Indicators for no charge
-
fxanalysis replied Nov 25, 2021image Anyone has idea what happened here? where this volume came from?
EURUSD
-
fxanalysis replied Nov 25, 2021I would suggest learning trouble shooting. You can do that by inserting Print somewhere to test if code is even going there and what values it is giving out. Printed text is visible in Expert window.
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Nov 25, 2021Ok, did trouble shooting on the code, turns out you have incorrect signs in the first loop conditions. for(int i=4; i>=200; i++) . while i >=200 .. indicator never went through the loop, thats why output was always 0. Even after this correction ...
Need Help : Merge 2 Loops into 1 Loop
-
fxanalysis replied Nov 25, 2021Market went the other way in last minutes of London session
Prediction for close, off by 7 PIPs image EURUSD
-
fxanalysis replied Nov 25, 2021image Momentum lost, market reached SL, trade closed in profit RR 1:1 Now lets see if London session will close @1.1218
EURUSD
-
fxanalysis replied Nov 25, 2021Please add the source file, else this will take forever..
Need Help : Merge 2 Loops into 1 Loop