- Search Crypto Craft
-
Ralome replied Jul 5, 2013Hi Hercs, It simply visualizes the concept outlined by Eurusdd. You have the BB on price and Stochs, and the idea is to check the position of the price/stochs in relation to the BB lines. My indy displays the difference in the position (based on ...
The similarity system
-
Ralome replied Jul 5, 2013For the lazy eyes
[Edit: I made a mistake in my code, new file coming up. My apologies
]The similarity system
-
Ralome replied Jun 26, 20135. Asterix and Obelix (I'm so proud of myself)

Extracted Thread (per thread starter's request)
-
Ralome replied Jun 23, 2013Hi Gumrai, there are problems with your variables: 1. In the inputs you use StopLoss and TakeProfit to specify the distance in pips, then you use the exact same variable names to specify the levels based on these distances: extern int StopLoss = 50; ...
Zero Divide error coding conundrum
-
Ralome replied May 16, 2013I didn't say it was a joke. I just think that he just used the other guy's quote to "prove" his own point about trend following/price moving away from a reference point. He says he follows the trend. A trend is a move from point A to point B. But ...
Extracted Thread (per thread starter's request)
-
Ralome replied May 16, 2013I read that specific post carefully, that's why I think he didn't

Extracted Thread (per thread starter's request)
-
Ralome replied Apr 25, 2013If you compare it with the other picture in that post, you'll find out how it works, it's pretty easy to code

Multi dimensional Donchian channels indicator
-
Ralome replied Apr 23, 2013I can assure you that there are no bugs there
It uses M1, and yes, the bottom chart is (almost) the same indicator. If you overlay the original M1 candles on the upper chart, you should be able to get the idea. However, even after getting the ...Assorted Indicators/Scripts
-
Ralome replied Mar 1, 2013Hi qq, The problems are: 1. You can use ArrayBSearch to search IN the sorted array, which is pips2 in your code. But you search in pips, which is the UNSORTED array: ArrayBsearch(pips,pips2[i]) You can also find this info in the mql4 documentation ...
MT4 ArrayBsearch function problem
-
Ralome replied Feb 19, 2013Hi, Try this one I just made (based on url ) Dif sets the minimum movement needed for a reversal candle (in pips). In colors, the first (white) is upwave, second (black) is downwave, the rest are undisplayed buffers. Greets, Ralome
Looking for Weis Wave indicator MT4
-
Ralome replied Feb 1, 2013I made an indicator that alerts the result of IndicatorCounted(). I attached it and closed MT4. When I restarted it, this happened: 19:46:16 MT4_Start_Test EURUSD,M1: Alert: 0 19:46:17 MT4_Start_Test EURUSD,M1: Alert: 8999 19:46:18 MT4_Start_Test ...
EA is using 100% CPU in MetaTrader 4
-
Ralome replied Jan 29, 2013http://en.wikipedia.org/wiki/Rate_of_change_%28technical_analysis%29 - typo in the earlier post :-)
Looking for a momentum formula
-
Ralome replied Jan 29, 2013Without infos my only idea is that your loop gets stuck due to a miscalculation of pips. Eg. you attach the EA to a JPY pair, and you have some line using 0.0001 as pip value (or vice versa, 0.01 for USD pairs etc.). Fxtr51 said it right, it can't ...
EA is using 100% CPU in MetaTrader 4
-
Ralome replied Jan 28, 2013Why not TimeCurrent()-last_time_sr>840? :-) Your variable is declared locally, but checking line is most probably in the main part of your code, so last_time_sr will always be empty. But it still doesn't solve the stuck-in-the-loop situation. But ...
EA is using 100% CPU in MetaTrader 4
-
Ralome replied Jan 8, 2013That's my point. I guess it comes from stock trading, where it made/makes more sense on the daily chart. 200 days = 40 weeks = (sort of) 10 months. But 200 hours? Although it is very close to 24 x 8 = 192 hours. But why 8 days then?
Crosses, bounces and curve fitted indicators
-
Ralome replied Jan 8, 2013If you use values according to the principles CP wrote, how did you come up with a 200MA on H1?
Crosses, bounces and curve fitted indicators