Page 1303 of 2041

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 08, 2021 7:59 am
by mrtools
Acursioo wrote: Tue Jun 08, 2021 5:00 am Hello MrTools, Coders & Traders,


Is it possivel to make this indicator a MTF indicator ?
I was able to put the option of MTF but it did not work, the indicator signals did no change when changed the time frame option.
(I'm not a coder, problably did something wrong)
I have attached the original file.
Would need a non decompiled version.

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 08, 2021 12:14 pm
by tkhanfx
mrtools wrote: Tue Jun 08, 2021 5:24 am Mainly the problem is the negative shift.
I suspected that.. found a few more though, some may have been modified by you in the past elsewhere but I could be wrong, could you kindly take a look at them? These versions don't seem to have the shift function

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 08, 2021 2:20 pm
by optionhk
mrtools wrote: Mon Jun 07, 2021 4:37 am Try here Ma cross histo
This indicator I use it for scalping since last 8 years.
An excellent work of mrtools

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 08, 2021 3:01 pm
by ZZTop
Mr Tools

Is it possible to make this indicator to Multi Symbol, it could be oscillator, if on chart version is impossible.

Thank you.

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 08, 2021 7:30 pm
by Panorama
Hi,

Simple request

Can someone kindly create an indicator which shows the amount of total open lotsize on the chart?

For example:
On the chart EURUSD there are 20 open orders with 0.01 lotsize. I would like to see the total lotsize amount 0.20

Re: MT4 Indicator requests and ideas 200 EMA candle count and number of pips

Posted: Tue Jun 08, 2021 7:37 pm
by Tin_Trade
Does anyone have a indicator or dashboard that gives the count of candles since touching or crossing the 200 EMA depending on timeframe ?
I am looking at reversion to mean strategy.

Re: MT4 Indicator requests and ideas 200 EMA candle count and number of pips

Posted: Tue Jun 08, 2021 8:44 pm
by pacois
Tin_Trade wrote: Tue Jun 08, 2021 7:37 pm Does anyone have a indicator or dashboard that gives the count of candles since touching or crossing the 200 EMA depending on timeframe ?
I am looking at reversion to mean strategy.
Hello test if the indicator is suitable for inserting it in a possible dashboard. Thanks.

Re: MT4 Indicator requests and ideas 200 EMA candle count and number of pips

Posted: Tue Jun 08, 2021 8:54 pm
by josi
pacois wrote: Tue Jun 08, 2021 8:44 pm Hello test if the indicator is suitable for inserting it in a possible dashboard. Thanks.
you'd have lost a lot of money entering after the 3 up
Despite that it may be very helpful within the context of a dashboard - so if you can find the time that would be great.

Re: MT4 Indicator requests and ideas

Posted: Tue Jun 08, 2021 9:10 pm
by cvdm7756
Good Day Coders, would it be possible to Add Divergence, with Alert option, to the MVI Indicator ?

Re: MT4 Indicator requests and ideas

Posted: Wed Jun 09, 2021 12:44 am
by 太虚一毫
mrtools wrote: Thu Jan 09, 2020 3:48 am Added mtf and arrows.
Does this MHL average oscillator (mtf + arrows).mq4 support enPrices, enColorOn, and enLevelType upgrades?

Code: Select all

enum enPrices
{
   pr_close,      // Close
   pr_open,       // Open
   pr_high,       // High
   pr_low,        // Low
   pr_median,     // Median
   pr_typical,    // Typical
   pr_weighted,   // Weighted
   pr_average,    // Average (high+low+open+close)/4
   pr_medianb,    // Average median body (open+close)/2
   pr_tbiased,    // Trend biased price
   pr_tbiased2,   // Trend biased (extreme) price
   pr_haclose,    // Heiken ashi close
   pr_haopen ,    // Heiken ashi open
   pr_hahigh,     // Heiken ashi high
   pr_halow,      // Heiken ashi low
   pr_hamedian,   // Heiken ashi median
   pr_hatypical,  // Heiken ashi typical
   pr_haweighted, // Heiken ashi weighted
   pr_haaverage,  // Heiken ashi average
   pr_hamedianb,  // Heiken ashi median body
   pr_hatbiased,  // Heiken ashi trend biased price
   pr_hatbiased2  // Heiken ashi trend biased (extreme) price
};
enum enColorOn
{
   cc_onSlope,   // Change color on slope change
   cc_onMiddle,  // Change color on middle line cross
   cc_onLevels   // Change color on outer levels cross
};
enum enLevelType
{
   lev_float, // Floating levels
   lev_quan   // Quantile levels
};