Disliked{quote} That yes, of course, as long as those conditions can be defined.Ignored
It's so nice when people study and learn coding, so you don't have to.
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} That yes, of course, as long as those conditions can be defined.Ignored
Disliked{quote} This is an option Double_Tops_Bottoms - price deviation of double peaks in percent or points - double top n bottom peaks decided by fractals or zz - optional lines or rectangles, rect height is the price deviation - alerts Pic shows peaks based on fractal or zz- {file} {image}Ignored
Disliked{quote} EA: https://www.forexfactory.com/thread/...0#post12537260 Indicator: https://www.mql5.com/en/forum/198990#comment_5197757Ignored
Disliked{quote} You can't do that in MQL4 or 5. There is no tick data available which would show Buy volume separated from Sell volume. You could have an indicator like the MT4 ones in the link. Or you could have a ZZDelta like the one in LuxAlgo. Here is one idea, maybe useful? {file} {file} {image} A more advanced indicator showing Volume Profile on individual bars is maybe possible? However, there is an indicator called "BetterVolume" in separate window which is based on a similar idea. https://www.mql5.com/en/code/56678 {image} So, I guess,...Ignored
Disliked...horizontal lines appear in the live candle (Real Time), and if the running candle breaks the condition at any moment, the lines are instantly cleared...once the Insider bar appears on the chart (After completion), an alert ...Ignored
Disliked...Want the calculations changed from TMA to RSI as Tma is slow to respond to price...Ignored
Disliked{quote} This may do it, there is an option to use rsi, and then to use smoothing on it. Rsi is already a momentum value, so the slope value is taken as the rsi value itself, or the smoothed rsi value. Pic shows the original tma, then rsi, and rsi with smoothing- {image} {file}Ignored
DislikedSetting the attached arrow to 1fast sma ....34 slow sma please, please am i going to use another moving average to mark the signal period of 5 i dont know what it means. In the input it says signal period-----5, please assist {file} {image}Ignored
// Displaying Arrows
for(i=0; i<limit; i++)
{
if(Buffer1[i] > Buffer2[i] && Buffer1[i-1] < Buffer2[i-1])
{
b2[i] = High[i]+10*Point;
if(b2[i] != EMPTY_VALUE && b2[i] != BuySignal )
{
BuySignal=b2[i];
Print( TimeToStr(TimeCurrent(), TIME_MINUTES) + ", Indicator Send Sell Signal");
}
}
if(Buffer1[i] < Buffer2[i] && Buffer1[i-1] > Buffer2[i-1])
{
b3[i] = Low[i]-10*Point;
if(b3[i] != EMPTY_VALUE && b3[i] != SellSignal )
{
SellSignal=b3[i];
if(b3[i] != EMPTY_VALUE) Print( TimeToStr(TimeCurrent(), TIME_MINUTES) + ", Indicator Send Buy Signal");
}
}
}//end for Disliked{quote} This indicator does the following: 1. Gets values for Fast_MA. 2. Gets values for Slow_MA, 3. Calculates Buffer1=Fast_MA - Slow_MA, 4. Calculates Buffer2=Signal_MA from 3. (average of Signal_Period of Buffer1 = Fast_MA - Slow_MA), And then plots the arrows under conditions: // Displaying Arrows for(i=0; i<limit; i++) { if(Buffer1 > Buffer2 && Buffer1[i-1] < Buffer2[i-1]) { b2 = High+10*Point; if(b2 != EMPTY_VALUE && b2 != BuySignal ) { BuySignal=b2; Print( TimeToStr(TimeCurrent(), TIME_MINUTES) + ", Indicator...Ignored
Dislikedmy humble request all master coder if it is possible please modify attached fibo indicator so i can choose high-low swing drag any hl manually and use as many time as i want .now it is fixed. Looking forward ,thanks in advance. {file}Ignored
Disliked{quote} this is an option double_tops_bottoms - price deviation of double peaks in percent or points - double top n bottom peaks decided by fractals or zz - optional lines or rectangles, rect height is the price deviation - alerts pic shows peaks based on fractal or zz- {file} {image}Ignored
Disliked{quote} This may do it, there is an option to use rsi, and then to use smoothing on it. Rsi is already a momentum value, so the slope value is taken as the rsi value itself, or the smoothed rsi value. Pic shows the original tma, then rsi, and rsi with smoothing- {image} {file}Ignored
Disliked{quote}...showing all currency strength side by side with 'only pairs on chart"? Or did you unselect colors to only see USDJPY?...Ignored