Page 1955 of 2170

Re: MT4 Indicator requests and ideas

Posted: Thu Nov 02, 2023 1:27 am
by simon_n3z
and i have this, but its not working

Re: MT4 Indicator requests and ideas

Posted: Thu Nov 02, 2023 10:08 am
by kvak
Krunal Gajjar wrote: Thu Nov 02, 2023 12:37 am Dear kwak,

I request you to whenever it suits to your time Please make this gem HILO channel jurik BT,
AHTF,MTF, Alerts and Arrow equiped as an oscillator.

Regards,
Krunal.
I made THIS version with average pack, where is jurik moving average.

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 03, 2023 2:04 am
by kenshin281180#
Good Sirs,

Are we able to add alerts and the mtf feature to this indicator please. I use it with us30 and take signals from the 15min tf and enter on the 5 min. Thank you in advance.

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 03, 2023 6:29 am
by mrtools
kenshin281180# wrote: Fri Nov 03, 2023 2:04 am Good Sirs,

Are we able to add alerts and the mtf feature to this indicator please. I use it with us30 and take signals from the 15min tf and enter on the 5 min. Thank you in advance.
Try here

Re: MT4 Indicator requests and ideas

Posted: Fri Nov 03, 2023 11:09 pm
by sal
mr/tools
possible to add horizontal line for level where the sar END DOT.
lines can be stop till the 10 bars (custom in settings) from start dot.

Re: MT4 Indicator requests and ideas

Posted: Sat Nov 04, 2023 2:21 am
by mrtools
simon_n3z wrote: Thu Nov 02, 2023 1:27 am and i have this, but its not working
Are you looking for a volume weighted rsi?

Re: MT4 Indicator requests and ideas

Posted: Sat Nov 04, 2023 4:51 am
by simon_n3z
mrtools wrote: Sat Nov 04, 2023 2:21 am Are you looking for a volume weighted rsi?
Hello Mr.Tools

indeed I am ;)

It could oscillate a a coloured histo around the zeroline. It would be biblical xD :D

Re: MT4 Indicator requests and ideas

Posted: Sat Nov 04, 2023 6:53 am
by mrtools
simon_n3z wrote: Sat Nov 04, 2023 4:51 am Hello Mr.Tools

indeed I am ;)

It could oscillate a a coloured histo around the zeroline. It would be biblical xD :D
Posted a version here

Re: MT4 Indicator requests and ideas

Posted: Mon Nov 06, 2023 2:18 pm
by 256robertm
mrtools wrote: Tue Mar 07, 2017 4:07 am This is an updated price channel signal with the extra price options.
Image
Which price channel is that indicator based off of ? cant seem to find

Re: MT4 Indicator requests and ideas

Posted: Tue Nov 07, 2023 8:34 am
by euro_rapp
Hello,

i wanted to code a Price channel but with buy and sell signals accoridng to RSI MA.
But somehow im not able to get the code running. Can some expert pro coder have a look at it?

//+------------------------------------------------------------------+
//| ATR.mq4 |
//| Copyright 2005-2014, MetaQuotes Software Corp. |
//| http://www.mql4.com |
//+------------------------------------------------------------------+
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 DodgerBlue
#property indicator_color2 Red
#property indicator_width1 3
#property indicator_width2 3
#property indicator_style1 STYLE_SOLID
#property indicator_style2 STYLE_SOLID

extern string RSI_Source = "Close";
extern int RSI_Period = 14;
extern int RSI_MA_Period = 10;
extern double UpperBandMultiplier = 2.0;
extern double LowerBandMultiplier = 2.0;
extern int NumCandles = 100; // Anzahl der letzten Kerzen für die Berechnung

double ExtMapBufferUpper[];
double ExtMapBufferLower[];

int OnInit()
{
SetIndexBuffer(0, ExtMapBufferUpper);
SetIndexLabel(0, "Upper Channel");
SetIndexBuffer(1, ExtMapBufferLower);
SetIndexLabel(1, "Lower Channel");
return(INIT_SUCCEEDED);
}

int start()
{
int beginIndex = Bars - NumCandles - 1; // Index des ersten Bars für die Berechnung
ArraySetAsSeries(ExtMapBufferUpper, true);
ArraySetAsSeries(ExtMapBufferLower, true);

for (int i = beginIndex; i >= 0; i--)
{
double rsiValue = iRSI(NULL, 0, RSI_Period, RSI_Source, i);
double rsiMA = iMA(NULL, 0, RSI_MA_Period, 0, MODE_SMA, rsiValue, i);

ExtMapBufferUpper[i] = iHigh(NULL, 0, i) + UpperBandMultiplier * rsiMA;
ExtMapBufferLower[i] = iLow(NULL, 0, i) - LowerBandMultiplier * rsiMA;
}

return(0);
}