- Search Crypto Craft
- 275 Results (1 Threads, 274 Replies)
- pah replied Mar 20, 2025
Firstly thanks for the thread. I've been trying to follow along but it seems many posts are subsequently deleted shortly after posting. This makes following it difficult. Is there any particular reason why your posts are being deleted after a short ...
Candle Patterns Magnet Zones and More
- pah replied Mar 19, 2025
Hi, I had a quick look and I'm assuming the previous code we talked about is still in play (in the other custom indicator). If something is subject to the repaint issue you might avoid that by not looking at (or not calculating) the current open ...
Return of Index Number With Certain Conditions - MQL4
- pah replied Mar 10, 2025
The link you provided simply lead to the sign up page for perplexity ai. How was that useful in relation to this thread? I'm not sure what you mean by the comment on having a dull moment. I'm having a dull moment right now as I yet again feel the ...
2 minute, or time-frame of choice
- pah replied Mar 10, 2025
I didn't notice a link when I first read your post, did you add that later in the edit? The link is to perplexity.ai which doesn't help at all. The Period Converter Script bundled with MT4 I believe does now provide a real time updating & tradeable ...
2 minute, or time-frame of choice
- pah replied Mar 10, 2025
I think we're all getting our wires crossed on this one. The problem Stan is having is that the FlexiBar indi was not appearing in his navigator within MT4. As for FlexiBar itself, it builds an offline chart and updates it in real time. It does ...
2 minute, or time-frame of choice
- pah replied Mar 9, 2025
I have 1440 here too so that should be fine. Sorry I can't think of anything else to try other than deleting it, restart MT4, adding it again and refresh/restart again. Maybe others might chime in if they can think of anything else hopefully. ...
2 minute, or time-frame of choice
- pah replied Mar 9, 2025
Are both your MT4 versions up to date? Can't think of reasons why it's ok on one and not the other. May be delete it and try again in case the MT4 list has gotten a glitch in it.
2 minute, or time-frame of choice
- pah replied Mar 9, 2025
Just tried it here, download was a .ex4 file. Placed in indicators folder & refreshed list. Appears as FlexiBar. Is yours definitely in the indicators folder? Regards.
2 minute, or time-frame of choice
- pah replied Mar 9, 2025
Is the file a .exe or .ex4 extension? Should be .ex4. Also, are any errors shown in the experts tab? Regards.
2 minute, or time-frame of choice
- pah replied Mar 9, 2025
Assuming one buffer it would look like: for(int i = limit-1; i >= 0; i--) { if (i >= MathMin(PLOT_MAXIMUM_BARS_BACK-1, rates_total-1-OMIT_OLDEST_BARS)) continue; int barshift_H1 = iBarShift(Symbol(), PERIOD_H1, Time[i]); if ( barshift_H1 < 0 ) ...
Return of Index Number With Certain Conditions - MQL4
- pah replied Mar 9, 2025
I think you explained it correctly but I'm confused now as you show saving the Buy values to Buffer1 and sell values to Buffer2. Is this for use in an EA or are you creating another indicator? For an indicator I'm wondering why you need two ...
Return of Index Number With Certain Conditions - MQL4
- pah replied Mar 8, 2025
Hi, I use software from Omnia which is pretty solid in creating renko bars. They have a product called Flexi Bars which does what you want but I haven't tried that one. I don't have any connections to the company. Pretty sure you can download and ...
2 minute, or time-frame of choice
- pah replied Mar 8, 2025
Something like the following. If it's more complicated you will have to post your original code with the if statements. for(int i = limit-1; i >= 0; i--) { if (i >= MathMin(PLOT_MAXIMUM_BARS_BACK-1, rates_total-1-OMIT_OLDEST_BARS)) continue; int ...
Return of Index Number With Certain Conditions - MQL4
- pah replied Mar 7, 2025
And just an extra tip for anyone interested. If you do use a while loop that could potentially get hung up, try adding a check for IsStopped() which will at least allow it to come out when you hit stop or remove the indi/script/EA or whatever you're ...
Return of Index Number With Certain Conditions - MQL4
- pah replied Mar 7, 2025
Hi, Your problem with freezing is almost certainly caused by: while ( iCustom ( Conditions_bla_bla_Buy, i+ barshift_H1 ) != EMPTY_VALUE ) { Buffer1[i] = 1; } Assuming your iCustom() call is returning some value other than EMPTY_VALUE it will ...
Return of Index Number With Certain Conditions - MQL4
- pah replied Mar 4, 2025
I didn't realize you were struggling with a low res screen, I too have to crank up the display scaling when using a smaller monitor. The best solution is a bigger screen but in the meantime you could toggle between full screen ( F11 ) and normal ...
Fix MT4 Toolbars
- pah replied Mar 3, 2025
You can drag all the toolbars to the top row using the little handles on each one. image
Fix MT4 Toolbars
- pah replied Mar 2, 2025
Yes, I see what you mean.
How to place a Buy Limit order inside the spread by mouse?