You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
You say use a 10M chart, the nearest time frame on Metatrader is 5m and 15m, what settings do you suggest using with these time frames?
Regards,
Noel.Try this:
TF M15,
EMA = 5,
EMA = 10,
ATR = 15,
RSI = 21,
trigger 0,0012
I calculated this like that:
If you use 10 minute chart window ema from 3 period then at 1 minute it should be 0.3333 but when you multiply it by 15 (to use on 15 minute chart) then you got 4.999 so you can use 5 period. And the rest of the parameters is calculated in the same way.
Kalenzo,
Thanks a lot.
Noel.
Martingale systems
In martingale systems (Goblin and others), often the first trade start in the wrong direction, or trade it too early, and after that the martingale system goes in the same wrong direction.
Is it possible to choose the first trade manually and then take Money Management to trade in the direction I choose ?
Standard deviation channel
Guys
Any of you have modified the MT4´s Standard deviation channel to show several levels in 1 channel. in the next pic you´ll see several channels (0.25, 0.5, 0.75, and 1.0). What i´m loking for is 1 indicator with all this lines.
would you please help me with this indicator?
Datas of daily HL with customed time Zone
Hi,
Can anyone please suggest how I can have csv data with
daily open -High- low -close
in the time Zone that we can selected ourseves, not just only in Broker Server time Zone.
thank in advance
sorry for my poor english.
Basing Trendlines off of MA's
Quick question -
Does anyone out there use chart patterns, trendlines, etc., but base them off of MA's? It's just a simple thought in my head to smoothe things out and perhaps make the patterns easier to see. Obviously you wouldn't use a 50 SMA, but perhaps a Hull MA period 3?
Just wondering if anyone has done this to any success or what everyones opinions are. TIA. Matt
Moving Average General Questions
Moving Average General Questions
1. Please explain the conversion of moving averages
200 ma on a day chart= what on a 5min 30min 1hr 4hr
100ma on a day chart = what on a 5min 30min 1hr 4hr
50 ma on a day chart= what on a 5min 30min 1hr 4hr
34 ma on a day chart= what on a 5min 30min 1hr 4hr
2. When reading in general about any trading market
Reading about 100ma, 200ma as common support and not saying time frame
Would one assume day chart as default. I read many time people talking
About moving averages and they never talk about what time frame they are in
Are day charts the common reference?
3. what is the common type on a day chart in any market when it is not referenced
Exponential, simple, weighted ?
Are different type best used at different time frames ?
Would Exponential for day chart and simple for 1hr and 30min correct?
Turning this Indicator to EA how?
This is an indicator.I want to make it to EA.Can somebody tell me how?
I want to make 100 pips TP,70 SL,Lot 1,timeframe 4H.Please somebody help me.Here is the Indicator.
==========================================================
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 LightSkyBlue
#property indicator_color2 Red
#property indicator_color3 Blue
#property indicator_color4 Green
double CrossUp[];
double CrossDown[];
extern int FasterMode = 1; //0=sma, 1=ema, 2=smma, 3=lwma//orig o, second 2
extern int FasterMA = 6;//orig 21, second orig 5
extern int SlowerMode = 0; //0=sma, 1=ema, 2=smma, 3=lwma// orig 0 second 0
extern int SlowerMA = 13;// orig 55, second 40
double ExtMapBuffer1[];
double ExtMapBuffer2[];
extern bool SoundON=true;
double alertTag;
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
SetIndexStyle(0, DRAW_ARROW, STYLE_SOLID,2);
SetIndexArrow(0, 233);
SetIndexBuffer(0, CrossUp);
SetIndexStyle(1, DRAW_ARROW, STYLE_SOLID,2);
SetIndexArrow(1, 234);
SetIndexBuffer(1, CrossDown);
//---- indicators
SetIndexStyle(2,DRAW_LINE,0,2);
SetIndexBuffer(2,ExtMapBuffer1);
SetIndexStyle(3,DRAW_LINE,0,2);
SetIndexBuffer(3,ExtMapBuffer2);
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start() {
int limit, i, counter;
double fasterMAnow, slowerMAnow, fasterMAprevious, slowerMAprevious,
fasterMAafter, slowerMAafter;
double Range, AvgRange;
int counted_bars=IndicatorCounted();
int counted_bars1=IndicatorCounted();
//---- check for possible errors
if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
for(i = 0; i <= limit; i++) {
counter=i;
Range=0;
AvgRange=0;
for (counter=i ;counter<=i+9;counter++)
{
AvgRange=AvgRange+MathAbs(High[counter]-Low[counter]);
}
Range=AvgRange/10;
fasterMAnow = iMA(NULL, 0, FasterMA, 0, FasterMode, PRICE_CLOSE,
i);
fasterMAprevious = iMA(NULL, 0, FasterMA, 0, FasterMode,
PRICE_CLOSE, i+1);
fasterMAafter = iMA(NULL, 0, FasterMA, 0, FasterMode,
PRICE_CLOSE, i-1);
slowerMAnow = iMA(NULL, 0, SlowerMA, 0, SlowerMode, PRICE_CLOSE,
i);
slowerMAprevious = iMA(NULL, 0, SlowerMA, 0, SlowerMode,
PRICE_CLOSE, i+1);
slowerMAafter = iMA(NULL, 0, SlowerMA, 0, SlowerMode,
PRICE_CLOSE, i-1);
if ( (fasterMAnow > slowerMAnow) && (fasterMAprevious <
slowerMAprevious) && (fasterMAafter > slowerMAafter)) {
CrossUp = Low - Range*0.5;
if (SoundON==true && alertTag!=Time[0]){
// Alert("EMA Cross Trend going UP on ",Symbol(),Period());
PlaySound("trendup.wav");
alertTag = Time[0];}
}
else if ((fasterMAnow
slowerMAprevious) && (fasterMAafter < slowerMAafter)) {
CrossDown = High + Range*0.5;
if (SoundON==true && alertTag!=Time[0]){
// Alert("EMA Cross Trend going Down on ",Symbol(),Period());
PlaySound("trendn.wav");
alertTag = Time[0];
}
}
}
//---- check for possible errors
if (counted_bars1<0) return(-1);
//---- last counted bar will be recounted
if (counted_bars1>0) counted_bars1--;
int pos=Bars-counted_bars1;
while(pos>=0)
{
ExtMapBuffer1[pos]= iMA(NULL,0,FasterMA,0,FasterMode,PRICE_CLOSE,pos);
ExtMapBuffer2[pos]= iMA(NULL,0,SlowerMA,0,SlowerMode,PRICE_CLOSE,pos);
pos--;
}
//----
return(0);
}
Alert possibility
Hi,
I've noticed that sometimes before large moves there is an increase in the frequency of price changes (tics). However, I'm not sure whether this is a consistent event.
If it's not too involved, it may be worth writing an indicator to backtest this idea. If it works, it could be a handy alert for those rapid large moves which we may then be able to pick up on M1 TF.
Something, perhaps, with external inputs -
Bars back
No. of price changes (alert level)
TimeFrame
Alarm on/off
(No prizes for guessing that I can't program)