- Ev
- Topluluk
- Programlama
- Free Indicator Opportunity!!!
Edit Your Comment
Free Indicator Opportunity!!!
Jun 09, 2020 zamanından beri üye
1 iletiler
Jun 28, 2020 at 00:24
(Jun 28, 2020 at 00:31 düzenlendi)
Jun 09, 2020 zamanından beri üye
1 iletiler
I will code an indicator you want for free. Mail me @ my PM. Thank you..
May 21, 2020 zamanından beri üye
9 iletiler
Jul 30, 2020 at 14:23
May 21, 2020 zamanından beri üye
9 iletiler
I am looking for a time based volume indicator for MT4 platform.
Time based in terms of historical volume at specific times in the past relative to the current volume. An example the volume on a 15 minute chart now as compared to the same 15 minute period over the last month or two.
The idea I have is to take the mean of the set of 15 minute historical time frames and then compare the current volume to the historical volume for the 15 minute time frame. The concept is to determine whether the current volume is greater or less than the historical volume during the same time frame.
Any help would be greatly appreciated.
Time based in terms of historical volume at specific times in the past relative to the current volume. An example the volume on a 15 minute chart now as compared to the same 15 minute period over the last month or two.
The idea I have is to take the mean of the set of 15 minute historical time frames and then compare the current volume to the historical volume for the 15 minute time frame. The concept is to determine whether the current volume is greater or less than the historical volume during the same time frame.
Any help would be greatly appreciated.
May 21, 2020 zamanından beri üye
18 iletiler
Aug 16, 2020 at 16:16
May 21, 2020 zamanından beri üye
18 iletiler
Do you sell your strategies? Or is it important for you to test it and understand how well it allows you to earn?
Actually, I would like to see real indicators, which will show that it makes sense. And of course on a real account... Not on a demo...
Actually, I would like to see real indicators, which will show that it makes sense. And of course on a real account... Not on a demo...
Aug 07, 2017 zamanından beri üye
2 iletiler
Aug 23, 2020 at 06:28
Aug 07, 2017 zamanından beri üye
2 iletiler
nice sir , plz code for me indicator, [email protected]
Feb 12, 2020 zamanından beri üye
20 iletiler
Aug 31, 2020 at 18:52
Feb 12, 2020 zamanından beri üye
20 iletiler
There are so many such offers now and I'm kind of interested. But I can't figure out what kind of diversity is worthy of attention and money. So I would like you to share your observations and tell me what to choose and why.
Oct 01, 2020 zamanından beri üye
4 iletiler
Oct 08, 2020 at 11:18
Oct 01, 2020 zamanından beri üye
4 iletiler
Thanks for your kind gesture. For the time being, I don’t need an indicator but will definitely contact when I need one.
Jan 16, 2014 zamanından beri üye
401 iletiler
Oct 08, 2020 at 11:58
Jan 16, 2014 zamanından beri üye
401 iletiler
Can you do anchored wvap for MT4?
May 21, 2020 zamanından beri üye
9 iletiler
Oct 15, 2020 at 18:26
May 21, 2020 zamanından beri üye
9 iletiler
I do not have a sample of the time based volume indicator.
I only had an idea, which consisted of developing a base line to judge the current volume by the volume at the same time of day over a specific time frame. I could then better judge whether the current volume is above or below average during the same time frame. So it really comes down to is the current bar's volume is above or below the average for the same bar at that specific time over the last 4 to 6 weeks.
I only had an idea, which consisted of developing a base line to judge the current volume by the volume at the same time of day over a specific time frame. I could then better judge whether the current volume is above or below average during the same time frame. So it really comes down to is the current bar's volume is above or below the average for the same bar at that specific time over the last 4 to 6 weeks.
May 21, 2020 zamanından beri üye
9 iletiler
Oct 20, 2020 at 17:29
May 21, 2020 zamanından beri üye
9 iletiler
Can you explain why there are vertical lines when this indicator is attached to the chart?
Here is the code:
#property strict
#property indicator_buffers 4
#property indicator_chart_window
input int InpATRperiod=14; // ATR Periods
input float InpRisk=1; // Risk Size %
input float InpSLfactor=1.5; // Stop Loss as a factor of ATR
input int InpFontSize=12; // Font size
input color InpColor=Red; // Color
input int InpBaseCorner=CORNER_RIGHT_UPPER; // Base Corner 0=UL,1=UR,2=LL,3=LR
input float InpFixedATR=0; // Fixed ATR points
string AccntC=AccountCurrency(); //Currency of Acount eg USD,GBP,EUR
string CounterC=StringSubstr(Symbol(),3,3); //The Count Currency eg GBPUSD is USD
string ExC=AccntC+CounterC; //Create the Pair for account eg USDGBP
double UpTicks[];
double DownTicks[];
double Diff[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
text_init(ChartID(),"textATR",5,InpFontSize,clrAliceBlue,InpFontSize);
text_init(ChartID(),"textBAL",5,(InpFontSize+2)*3,InpColor,InpFontSize);
text_init(ChartID(),"textRISK",5,(InpFontSize+2)*5,InpColor,InpFontSize);
text_init(ChartID(),"textlotsize",5,(InpFontSize+2)*7,White,InpFontSize);
text_init(ChartID(),"textBuyVolume",5,(InpFontSize+2)*9,clrForestGreen,InpFontSize);
text_init(ChartID(),"textSellVolume",5,(InpFontSize+2)*11,clrLightGoldenrod,InpFontSize);
text_init(ChartID(),"textDifference",5,(InpFontSize+2)*13,clrRed,InpFontSize);
SetIndexBuffer(0,UpTicks);
SetIndexBuffer(1,DownTicks);
SetIndexBuffer(2,Diff);
SetIndexLabel(0,"UpTicks");
SetIndexLabel(1,"DownTicks");
SetIndexLabel(2,"Difference");
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
int i,counted_bars=IndicatorCounted();
//---- check for possible errors
if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
//----
for(i=0; i
Here is the code:
#property strict
#property indicator_buffers 4
#property indicator_chart_window
input int InpATRperiod=14; // ATR Periods
input float InpRisk=1; // Risk Size %
input float InpSLfactor=1.5; // Stop Loss as a factor of ATR
input int InpFontSize=12; // Font size
input color InpColor=Red; // Color
input int InpBaseCorner=CORNER_RIGHT_UPPER; // Base Corner 0=UL,1=UR,2=LL,3=LR
input float InpFixedATR=0; // Fixed ATR points
string AccntC=AccountCurrency(); //Currency of Acount eg USD,GBP,EUR
string CounterC=StringSubstr(Symbol(),3,3); //The Count Currency eg GBPUSD is USD
string ExC=AccntC+CounterC; //Create the Pair for account eg USDGBP
double UpTicks[];
double DownTicks[];
double Diff[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
text_init(ChartID(),"textATR",5,InpFontSize,clrAliceBlue,InpFontSize);
text_init(ChartID(),"textBAL",5,(InpFontSize+2)*3,InpColor,InpFontSize);
text_init(ChartID(),"textRISK",5,(InpFontSize+2)*5,InpColor,InpFontSize);
text_init(ChartID(),"textlotsize",5,(InpFontSize+2)*7,White,InpFontSize);
text_init(ChartID(),"textBuyVolume",5,(InpFontSize+2)*9,clrForestGreen,InpFontSize);
text_init(ChartID(),"textSellVolume",5,(InpFontSize+2)*11,clrLightGoldenrod,InpFontSize);
text_init(ChartID(),"textDifference",5,(InpFontSize+2)*13,clrRed,InpFontSize);
SetIndexBuffer(0,UpTicks);
SetIndexBuffer(1,DownTicks);
SetIndexBuffer(2,Diff);
SetIndexLabel(0,"UpTicks");
SetIndexLabel(1,"DownTicks");
SetIndexLabel(2,"Difference");
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
int i,counted_bars=IndicatorCounted();
//---- check for possible errors
if(counted_bars<0) return(-1);
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
//----
for(i=0; i
*Ticari kullanım ve istenmeyen e-postalara müsamaha gösterilmez ve hesabın feshedilmesine neden olabilir.
İpucu: Bir resim/youtube urlsi yayınlamak, onu otomatik olarak gönderinize gömer!
İpucu: Bu tartışmaya katılan bir kullanıcı adını otomatik olarak tamamlamak için @ işaretini yazın.