Sorry but it repaints badly, made a non-repaint version and the signals don't look as good.Chickenspicy wrote: Thu Jun 08, 2023 10:05 pm please add mtf
It is source of one minute profit
And better than super signal channel
Re: MT4 Indicator requests and ideas
18702Wasn't able to convert it.Modahen77 wrote: Thu Jun 08, 2023 6:57 am Hello, Mrtools, and other coders in the house, please can you do me a favour and convert this indicxator to MQ4, and if possible include buy sell sigals alert and message. Thanks for your precious time.
Re: MT4 Indicator requests and ideas
18703with confirmations it is goodmrtools wrote: Fri Jun 09, 2023 3:21 am Sorry but it repaints badly, made a non-repaint version and the signals don't look as good.
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Re: MT4 Indicator requests and ideas
18704hello my friends, how are you? Is there a possibility to include that averages magic kit here? An ATR indicator is always a good option as an exit, so I would like to explore other options in it.
Thanks a lot in advance
Thanks a lot in advance

Re: MT4 Indicator requests and ideas
18705Please do you have VIX Volatility Extreme Indicator?
- These users thanked the author wugsie for the post:
- RodrigoRT7
Re: MT4 Indicator requests and ideas
18706How are you, my friend? I guess it refers to the paid indicator of the same name. frankly, I imagine a Waddah Attrar Explosion could do the same job for bands and volume. but if you wanted something specific in VIX, you can get it here on the forum.
- These users thanked the author RodrigoRT7 for the post:
- wugsie
Re: MT4 Indicator requests and ideas
18707Check hereRodrigoRT7 wrote: Fri Jun 09, 2023 4:09 am hello my friends, how are you? Is there a possibility to include that averages magic kit here? An ATR indicator is always a good option as an exit, so I would like to explore other options in it.
Thanks a lot in advance
- These users thanked the author mrtools for the post:
- RodrigoRT7
Re: MT4 Indicator requests and ideas
18708Code: Select all
/***************************************
Solar Wind Joy Translated from MT4 to Amibroker
heavily modified by trash to significantly improve speed of original code by KelvinHand
origins from http://www.traderji.com/amibroker/98121-convert-solar-wind-joy-mt4-indicator-afl-2.html
****************************************/
Version( 5.90 );
period = Param( "Period", 35, 1 );
smooth = Param( "Smoothing period", 10, 1 );
//---- mod by trash start
// using AMA2 -> huge speed up by using array instead of loop
function aFishFunc( period ) {
MaxH = HHV( H, period );
MinL = LLV( L, period );
midbar = ( H + L ) / 2;
array1 = 2 * ( ( midbar - MinL ) / ( MaxH - MinL + 1e-30 ) - 0.5 );
Value = AMA2( array1, 0.33, 0.67 );
Value = Min( Max( Value, -0.999 ), 0.999 );
array2 = log( ( 1 + Value ) / ( 1 - Value ) );
aFish = AMA2( array2, 0.5, 0.5 );
return IIf( aFish > 0, 10, -10 );
}
function VarSum( per ) {
result = per;
for( i = 1; i < per; i++ )
result += per - i;
return result;
}
// two times used average calculation put to function
function cAverage( array, period ) {
bi = BarIndex();
if( Status( "action" ) == actionIndicator ) {
startbar = Max( period, FirstVisibleValue( bi ) - period );
endbar = LastVisibleValue( bi );
} else {
startbar = period;
endbar = BarCount - 1;
}
//
result = Null;
for( i = startbar; i <= endbar; i++ ) {
SumI = 0;
for( k = 0; k < period; k++ ) {
weight = period - k;
SumI += weight * array[i - k];
}
result[i] = SumI;
}
return result / VarSum( period );
}
aFish = aFishFunc( period );
aLine = cAverage( cAverage( aFish, smooth ), smooth );
// --- mod by trash end
colorH = IIf( aLine > 0, colorBrightGreen,
IIf( aLine < 0, colorRed, colorGold ) );
Plot( aLine, "", colorH, stylenolabel | styleHistogram, Null, Null, 0, 0, -30 );
colorL = IIf( /*mod by trash*/Sum(aLine > 0, 2) == 2, colorBrightGreen,
IIf( /*mod by trash*/Sum(aLine < 0, 2) == 2, colorRed, colorGold ) );
Plot( aLine, "", colorL, stylenolabel | stylethick );
PlotGrid( 0, colorLightgrey, 6, 1, True );
Title = StrFormat( "{{NAME}} - {{INTERVAL}} - Solar Wind Joy: " +
EncodeColor( SelectedValue( ColorL ) ) + "%g", aline );
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Re: MT4 Indicator requests and ideas
18709nvm
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Re: MT4 Indicator requests and ideas
18710please add signal line that has filter for value and price value to this laguerre
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?