Disliked{quote} are you sure?nevermind, then i deleted my post because not usefull .. it's your rule
{image} {image} {image}
Ignored
I want to test this one please ganztrade
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} I am definitely inclined for the social project of Teaching Elederlies free of cost by producing videos. Can you please send a video you are talking about so can get a little insight. Thanks & RegardsIgnored
Disliked{quote} Hi ganztrade, This is what I was meaning yesterday with where I want my fib levels on the screen, on the right hand side. See attached indicator where it prints its levels as an example. This indicator works off ADR , I dont want that, want pure Fib levels of a price level , and I want to anchor and leave it where I want it. If you can get this one to do that, also fine. If you have a way to make the BoxBcBox levels also print only on right side...will be awesome ! But fibs...PLEASE Anyone here on the forum maybe have a quarters line indicator...Ignored
Disliked{quote} Sorry, little bug on handling filters. Fixed the bug and updated. Also, updated original one too. {file}Ignored
Disliked{quote} hi, I have a set file for a particular indicator. After copying the indicator to indicator folder, where should i copy the set files ? Can you clarify. thanks,Ignored
Disliked{quote} MQL > Presets (folder) you should copy that ".set" file in the "Presets" folder inside the MQLIgnored
Disliked{quote} Sorry, little bug on handling filters. Fixed the bug and updated. Also, updated original one too. {file}Ignored
Disliked{quote} Dear Classy, The main purpose of the Table is the Statistic part of the Pips. How many pips it goes high and low in certain time-frames. {image} See H4 - 2 - 1.1842 - Its End Result after 4 Hours and Compare it with Averages - There would be something which matches with the H4 Results When you use it with your Style of Trading the Statistics part certainly helps a lot in gaining Green Pips. Please share you Trading Style so we can discuss more about it. Thanks & regardsIgnored
double rsi[100];
double rsi_bb_main[100];
double rsi_bb_upper[100];
double rsi_bb_lower[100];
//+------------------------------------------------------------------+
void Rsi_bb()
//+------------------------------------------------------------------+
{
int counted_bars=IndicatorCounted();
if(counted_bars<0) return;
if(counted_bars>0) counted_bars--;
int limit=MathMin(100-counted_bars,100-1);
for(int i=limit; i>=0; i--) rsi[i]=iRSI(NULL,0,14,PRICE_CLOSE,i);
for(int i=limit; i>=0; i--)
{
rsi_bb_main[i] = iBandsOnArray(rsi,0,14,2,0,MODE_MAIN,i);
rsi_bb_upper[i] = iBandsOnArray(rsi,0,14,2,0,MODE_UPPER,i);
rsi_bb_lower[i] = iBandsOnArray(rsi,0,14,2,0,MODE_LOWER,i);
}
return;
} Rsi_bb(); //<---- function call Comment( "RSI: "+DoubleToStr(rsi[1],4)+"\n"+ "UPPER: "+DoubleToStr(rsi_bb_upper[1],4)+"\n"+ "LOWER: "+DoubleToStr(rsi_bb_lower[1],4)+"\n"+ "MAIN: "+DoubleToStr(rsi_bb_main[1],4)+"\n" );
Dislikediam looking for Multichart indicator. 3 timeframe in one same chart, also can draw analisys or add indicator. 1.Multichart_s+f_edition set+forget 2.MiniCharts Gold By SB something like these. thank in advance refer: https://m.youtube.com/watch?v=ZFKrjrAKtx4 {image} {image}Ignored
DislikedHi dear coders! I have one humble request. Can some coder add SR button to the attached SS SupportResistance indicator for ON/OFF function. The button should be fully customisable, just like in the other indicator (ORT) Supply Demand button which I also attach. I would really appreciate if some coder can do this. Best regards and green pips {file} {file}Ignored
double rsi[100];
double rsi_bb_main[100];
double rsi_bb_upper[100];
double rsi_bb_lower[100];
//+------------------------------------------------------------------+
void Rsi_bb()
//+------------------------------------------------------------------+
{
ArraySetAsSeries(rsi,true);
int counted_bars=IndicatorCounted();
if(counted_bars<0) return;
if(counted_bars>0) counted_bars--;
int limit=MathMin(100-counted_bars,100-1);
for(int i=limit; i>=0; i--) rsi[i]=iRSI(NULL,0,14,PRICE_CLOSE,i);
for(int i=limit; i>=0; i--)
{
rsi_bb_main[i] = iBandsOnArray(rsi,0,14,2,0,MODE_MAIN,i);
rsi_bb_upper[i] = iBandsOnArray(rsi,0,14,2,0,MODE_UPPER,i);
rsi_bb_lower[i] = iBandsOnArray(rsi,0,14,2,0,MODE_LOWER,i);
}
return;
} Disliked{quote} Trading is basically a psychology thing. Profitable trading has not much to do with applying a strategy or technique. I gather statistics to study patterns and devise in my own personal way methods that could help me fight fear and greed. Nothing to do with generation of signals or devising a profitable strategy. Trading will be conducted by a semi-automated EA. I am trying to devise an EA based on price action. by forward testing based on knowledge acquired by statistical indicators coded by Blue Rain and do visual backtesting by using...Ignored
DislikedEvery trader has to find own way and tools in a journey that mostly requires struggling with with own self all the time, rather than try to find a holy grail.Ignored
DislikedHello all, I am trying to combine RSI and Bollinger Bands within an EA but I seem to be running into a weird problem. When I combine the default RSI with Bollinger Bands using Previous Indicator's Data or within an indicator (see attached) , I obtain the correct values. {file}However, when I copy the RSI values into a static array with 100 elements, I get totally different results for the Bollinger Bands. double rsi[100]; double rsi_bb_main[100]; double rsi_bb_upper[100]; double rsi_bb_lower[100]; //+------------------------------------------------------------------+...Ignored
Disliked{quote} Dear BlueRain (and Lucky1359) Would it be complicated to put the label of the day of the week left to the date ? In any case thanks for that interesting indi. BestIgnored