This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Creado por MLADEN y optimizado porChatgpt 2025 | |
| #property copyright "" | |
| #property link "" | |
| //------------------------------------------------------------------ | |
| #property indicator_separate_window | |
| #property indicator_buffers 2 | |
| #property strict | |
| #property indicator_minimum 0.001 | |
| #property indicator_maximum 0.01 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //+------------------------------------------------------------------+ | |
| //| HMA color nrp.mq4 | | |
| //| mladen | | |
| //+------------------------------------------------------------------+ | |
| //------------------------------------------------------------------ | |
| // | |
| // divisor modification idea by SwingMan | |
| // | |
| #property copyright "" | |
| #property link "" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #property description "primer indicador triple bufer" | |
| #property tester_indicator "MTF-RSIOMA" | |
| #include <stdlib.mqh> | |
| #include <stderror.mqh> | |
| //--- indicator settings | |
| #property indicator_separate_window | |
| #property indicator_buffers 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if( LastSignal != Time[0] ) //Segunda LINEA Refresh 1minuto | |
| { //Tercera Linea Refresh 1Minuto | |
| //--- main loop | |
| for(int i = limit-1; i >= 0; i--) | |
| { | |
| if (i >= MathMin(1000-1, rates_total-1-50)) continue; //omit some old rates to prevent "Array out of range" or slow calculation | |
| // CONFIG A: MTF-HMAPrice", 5, 34, 8, 5, 1.8, 9, /// Average.Median.Body(open+close)/2 - 5MIN.P34 --- Linear Regresion Value | |
| // CONFIG B: MTF-HMAPrice", 5, 34, 28, 0, 1.8, 9, /// Heiken.Ashi.Better.Formula.Weighted - 5Min.P34 --- Simple Mpving Average |