Page 124 of 424

Re: Something interesting please post here (Metatrader)

Posted: Fri Dec 06, 2019 1:35 pm
by Intrest 1
i-gk-Magic ATR

Re: Something interesting please post here (Metatrader)

Posted: Wed Dec 11, 2019 11:51 pm
by W35
mosiskv wrote:Wed Sep 18, 2019 7:50 pm

Hi

Try this. Toggle Borders MT5 remove borders.

MosToggle borders.ex5
MT5 updated over the weekend and now Toggle Borders indicator doesn't work anymore. Can anyone assist? SOS!!!

Re: Something interesting please post here (Metatrader)

Posted: Thu Dec 12, 2019 7:53 pm
by pacois
Signal Cross Trading Dashboard With Alerts

Try!!

Re: Something interesting please post here (Metatrader)

Posted: Sat Dec 14, 2019 3:50 pm
by YeshuaYoke
Intrest 1 wrote: Fri Dec 06, 2019 1:35 pm i-gk-Magic ATR
Image
ITS IS VERY LAGGY IS THERE A CLEANER VERSION know how to make less laggy? know why its laggy fuck my ass up

Re: Something interesting please post here (Metatrader)

Posted: Fri Dec 20, 2019 2:38 am
by uncle wong
This is one of the most interesting indicator in mql4 language

Description:

Linear Momentum:

Momentum is strength of an object that moves to different place — this is my own definition. Momentum can be calculated with following equation: momentum = mass x velocity. You should already know that velocity is speed with direction.

Shortest equation will be: p=mv where p is momentum, m is mass (in kg) and v is velocity (in m/s).

Linear Momentum Implementation in MetaTrader Custom Indicator:

The following will explain why it’s called Linear Momentum in Forex:

p = momentum; m = mass, converted into volume of trade or tick;

I would prefer to use tick volume because it’s more easy to find tick information than volume of all lots traded around the world; v = velocity, it’s a value taken from pips movement divided by timeframe (point/seconds, originally in m/s).

Re: Something interesting please post here (Metatrader)

Posted: Sun Dec 22, 2019 12:42 am
by Intrest 1
the intersections of rsi on chart, cci on chart and other oscillators with signal MA are the intersections of these oscillators of their mid-levels in the higher timeframes. as you can see this is a good levels of support and resistance. perhaps the programmers will make the indicators of the levels of the oscillators

Re: Something interesting please post here (Metatrader)

Posted: Sun Dec 22, 2019 3:55 am
by vvFish
Intrest 1 wrote: Sun Dec 22, 2019 12:42 am the intersections of rsi on chart, cci on chart and other oscillators with signal MA are the intersections of these oscillators of their mid-levels in the higher timeframes. as you can see this is a good levels of support and resistance. perhaps the programmers will make the indicators of the levels of the oscillators
Where are the indicators and the template?
Just look at the pictures here, there is no interest in this. :think:

Re: Something interesting please post here (Metatrader)

Posted: Sun Dec 22, 2019 4:10 am
by Intrest 1
vvFish wrote:Sun Dec 22, 2019 3:55 am

Where are the indicators and the template?
  Just look at the pictures here, there is no interest in this. :think:
in the pictures rsi on chart and cci on chart

Re: Something interesting please post here (Metatrader)

Posted: Sun Dec 22, 2019 4:35 am
by mladen
uncle wong wrote: Fri Dec 20, 2019 2:38 am This is one of the most interesting indicator in mql4 language.
Description:
Linear Momentum:
Momentum is strength of an object that moves to different place — this is my own definition. Momentum can be calculated with following equation: momentum = mass x velocity. You should already know that velocity is speed with direction.
Shortest equation will be: p=mv where p is momentum, m is mass (in kg) and v is velocity (in m/s).
Linear Momentum Implementation in MetaTrader Custom Indicator:
The following will explain why it’s called Linear Momentum in Forex:
p = momentum; m = mass, converted into volume of trade or tick;
I would prefer to use tick volume because it’s more easy to find tick information than volume of all lots traded around the world; v = velocity, it’s a value taken from pips movement divided by timeframe (point/seconds, originally in m/s).

Replace the code of OnCalculate() with this :

Code: Select all

   int limit = rates_total-prev_calculated; if (limit>=rates_total-1) limit = rates_total-1;
      for(int i=limit; i>=0; i--) Temporary[i]=tick_volume[i]*(close[i]-open[i]);
      for(int i=limit; i>=0; i--) LinearMomentumBuffer[i]=iMAOnArray(Temporary,0,SmoothingPeriod,0,SmoothingMethod,i);
   return(rates_total);

The code used in that indicator is unnecessarily complicated


Re: Something interesting please post here (Metatrader)

Posted: Sun Dec 22, 2019 8:34 am
by thiru
mladen wrote: Sun Dec 22, 2019 4:35 am Replace the code of OnCalculate() with this :

Code: Select all

   int limit = rates_total-prev_calculated; if (limit>=rates_total-1) limit = rates_total-1;
      for(int i=limit; i>=0; i--) Temporary[i]=tick_volume[i]*(close[i]-open[i]);
      for(int i=limit; i>=0; i--) LinearMomentumBuffer[i]=iMAOnArray(Temporary,0,SmoothingPeriod,0,SmoothingMethod,i);
   return(rates_total);
The code used in that indicator is unnecessarily complicated
Thanks mladen :)

with that simplification, we lost the vertical scale. could you please fix that? also input configurable level alert would be very nice
//
// .. looks like its in the Trend direction & force index category of indicator.