- Search Energy EXCH
-
jeanlouie replied Mar 8, 2021What do you want to do with the mq4?
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 8, 2021Look for allaverages, it has a volume weighted ma and mtf.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 8, 2021- I dont work with ea's - there are plenty of trading panels around
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 8, 2021No, and the ruler one has input levels within the heights of the line/box.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 7, 2021Something previously made you might make use of, levels above n below, but levels outside the box. Range_Box_Based_TP_SL_Levels_v1.1 - levels based on the adjustable box - levels as a constant distance in pips, or as a multiple of box height or half ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 7, 2021Well, still went ahead and made a line option.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 7, 2021Just use the attached there url
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 6, 2021It's not a line, but functionally the same.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 6, 2021I'm not sure what you're on about, pic has heat history and colors changed. The coloring is for the histogram. image
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 6, 2021Here, you can load it as many times as you want, 1, 3, 100 times. Fyi minimum job listing on mql5 is $30. MAs_MTF_Slope_Color_toggle_v1.32 - multi instance - type in some unique thing as an id
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 5, 2021Reminder - There are almost too many individual settings, but they are there to be adjusted, and settings can be saved.
Time and Price Forecasting
-
jeanlouie replied Mar 5, 2021Be careful of which language the article is for, mql4 or mql5, they work very differently.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 5, 2021I put in both of them a history option, you'll see them
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 5, 2021Negative indexes don't work because in any array because there is no negative index. eg misc_arr[5] has 5 elements, in 5 indexes form 0-4, there is no index 5 or -1; Timeseries arrays like Time[] has the 0 index automatically adjusted to be the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 4, 2021Say there is some symbol that has 50 bars of history, the main loop in oncalc is running through all the bars, probably using index i, in timeseries direction. Now time[50] doesn't exist, indexes start from 0 and time[50+1] doesn't exist either, the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 4, 20211 - there are different ways, generally, feed the calc the price data of the higher tf, and every lower tf candle in a higher tf period gets the same value, that's the stair-step look. Code wise for the lower/current tf use ibarshift to get the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 3, 2021Write it out as you read it, something like- double check_price = (ask+bid)/2.0; //say its 68 int increment = 10;//round numbers of 10 doulbe rung_low = MathFloor(checkprice/increment) * increment;//68/10 *10 = 60 double rung_high = ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 3, 2021Scrap what you found and make your own for a couple of lines and for your own use. For any price you have, you're trying to find out which step on the ladder of round number increments that price is at, then the bottom and top rungs are the buy/sell ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 3, 2021- alert thing, yes that was a problem, addressed - indicator 2 signals are reversed/right side up now
I will code your EAs and Indicators for no charge
-
jeanlouie replied Mar 3, 2021There is no way to get the period separator time values, you have to calc these yourself. The separators also follow different rules based on tf, eg every day/week/month/year. Generally, as you loop through the chart, you're checking some time value ...
I will code your EAs and Indicators for no charge