- Search Energy EXCH
-
jeanlouie replied Nov 4, 2020- the 2 dots occur because you're not invalidating either of them, ie volume limit is reached, ok print a dot, but on forward data the candle isn't finished yet, it may switch from bull to bear and back again - on past bars, printing arrows on the ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Nov 3, 2020- should start with simpler things, like coding a ma without using inbuilt functions - what's the point of collecting the mtf price data into arrays? The info already exists and is easily accesible, you don't need to store them. It's the equivalent ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 31, 2020Atr_x2_Ratio - 2 atr periods - ratio of the first:second - level at 100% - all 3 plotted, the atr lines will also use the% axis, but they're not the point of the indicator image file Atr_x2_Ratio_price_no_subwindow - atr values in price, not pips ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 30, 2020Wouldn't call it my collection anymore, it was such a newbie thing to say, they're just moving averages, nothing special about them. Of all the types of ma's, I'd say less than 5 types have any real use, the rest are all slight variations of ...
(binned per thread starter's request) A Collection of Moving Ave
-
jeanlouie replied Oct 22, 2020It deletes all objects, now it only deletes it's own.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 21, 2020imaonarray is just another inbuilt function. What would you do if those inbuilt functions didn't exist? Slope coloring leading questions; - In mt4 a buffer line can only have 1 color, are you able to start-stop-start-stop a line when ever, where ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 19, 2020Get started on something yourself quickly. Start a new indicator, put in 1 buffer line, in the oncalc candle loop give that buffer the values of the close of every candle, thats the simplest buffer line that'll show up on the chart, that's a start ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 17, 2020Well why not? Consider what they're for, if you're after the close value of some bar on the current chart, why use iClose(chart symbol, chart period, location) when you can use Close[location]. Include settings used, a gap between candles shouldn't ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 17, 2020Couldn't see what you tried. You can have this, source attached so you can look inside. Variable sequence length and mininmum ratio, applies to consecutive candle types. image file Sources, in no particular order; - other people's code - code ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 16, 2020What have you got so far? double cur_body_size = MathAbs(Close[i]-Open[i]); double prev_body_size = MathAbs(Close[i+1]-Open[i+1]); double cur_to_prev_ratio = cur_body_size / prev_body_size; bool is_2x_bigger; if(cur_to_prev_ratio ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 14, 2020- it may be simulating spread on shorts - signals are for entries - restriction limits which signals get put into buffer
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 14, 2020- entry location, then either tp-sl-timeout hit, pips
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 13, 2020- if it's not going to be a short code snippet, just attach the file itself - you're checking 3 things, is the current candle being engulfed? then, is the previous candle a bull or bear? - if the candle is no longer being engulfed, undraw anything ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 10, 2020"measured in percentage terms?" - yes, ie 0.5=50% "any example of TP and SL of zone range" - play with the settings yourself, use 1.0, 2.0, 0.5 and see the difference
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 9, 2020The zone range is the price range of the time range. I originally called it time zone but thought it's misleading because it has nothing to do with gmt time zones, and it's more about an input start-end time range. It is in 0.0 digits so it can take ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 9, 2020MAs_MTF_toggle_v1.4 - shift input added pic has 1 of the 10sma's with a 5shift
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 8, 2020If you post snippets of your code here, with the code </> insert, people here will be glad to look at it.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 8, 2020Not sure if you can quote others yet, but if you could have, you should quote from the post, because I may not have seen this. Your English seems good. Email alerts added. updated - old file uploaded
I will code your EAs and Indicators for no charge
-
jeanlouie replied Oct 7, 2020HLine_Alert_Maker_v1.3 - added pixel offset for labels, from right side
I will code your EAs and Indicators for no charge