Edit Your Comment
Donchian Channel strategy
Tham gia từ Jul 11, 2011
38bài viết
Jun 22, 2015 at 17:36
(đã sửa Jun 22, 2015 at 17:37)
Tham gia từ Jul 11, 2011
38bài viết
Hello,
I am looking for someone that can help me develop a very simple strategy using donchian channel. I am not programmer, however, I could do it but the indicator is not included in the library, and I do not know how to create the strategy with a customs indicator.
Thanks!
I am looking for someone that can help me develop a very simple strategy using donchian channel. I am not programmer, however, I could do it but the indicator is not included in the library, and I do not know how to create the strategy with a customs indicator.
Thanks!
To win you have to risk loss
Tham gia từ Sep 05, 2013
49bài viết
Jun 23, 2015 at 05:44
Tham gia từ Sep 05, 2013
49bài viết
The Donchian channel was the what the famed Turtle Trades used. if you google search you will most likely find. based on buying on higher hi and selling on lower lows. if you look at the mt4 codebase page you can find the indicator. shows the highest hi and the lowest low over a given period. say 50 periods. if the highest hi is broken by a higher hi you would buy. interestingly, the Stochastic oscillator will show the same thing. where the price point is in a given period between the highest hi and lowest low. thats one. i like to use it like a pivot point where if you are higher or crossing above the midpoint line (highest high + lowest low) / 2 prices will stay long until the midpoint line is violated. made 300 pips monday with that way. .........(p.s. before you other guys get started, i do not care that it does not work for you)
“Everybody should have a dream. What if that dream comes true?” – Jack Ma
Tham gia từ Jul 11, 2011
38bài viết
Jun 24, 2015 at 15:48
Tham gia từ Jul 11, 2011
38bài viết
Hi Don,
Thanks for the explanation. I already have the indicator, however, I need to create en EA based on it.
I have been using manually with FXCM and it works.
Thanks again for the input.
Thanks for the explanation. I already have the indicator, however, I need to create en EA based on it.
I have been using manually with FXCM and it works.
Thanks again for the input.
To win you have to risk loss
Tham gia từ Jul 11, 2011
38bài viết
Jul 21, 2015 at 18:12
Tham gia từ Jul 11, 2011
38bài viết
Hello,
Sorry about the delay.
Yes, I have the code.
Here it is.
//+------------------------------------------------------------------+
//| Donchian Channel |
//+------------------------------------------------------------------+
#property copyright "ps"
#property link ""
//---- indicator settings
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Green
#property indicator_width1 2
#property indicator_width2 2
//---- indicator parameters
extern int periods=24;
//---- indicator buffers
double upper[];
double lower[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- drawing settings
SetIndexStyle(0,DRAW_LINE);
SetIndexStyle(1,DRAW_LINE);
//---- indicator buffers mapping
SetIndexBuffer(0,upper);
SetIndexBuffer(1,lower);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("Donchian Channel("+periods+")");
SetIndexLabel(0,"Upper");
SetIndexLabel(1,"Lower");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| now do the dance. |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//---- calculate values
for(int i=0; i
Sorry about the delay.
Yes, I have the code.
Here it is.
//+------------------------------------------------------------------+
//| Donchian Channel |
//+------------------------------------------------------------------+
#property copyright "ps"
#property link ""
//---- indicator settings
#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Red
#property indicator_color2 Green
#property indicator_width1 2
#property indicator_width2 2
//---- indicator parameters
extern int periods=24;
//---- indicator buffers
double upper[];
double lower[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- drawing settings
SetIndexStyle(0,DRAW_LINE);
SetIndexStyle(1,DRAW_LINE);
//---- indicator buffers mapping
SetIndexBuffer(0,upper);
SetIndexBuffer(1,lower);
//---- name for DataWindow and indicator subwindow label
IndicatorShortName("Donchian Channel("+periods+")");
SetIndexLabel(0,"Upper");
SetIndexLabel(1,"Lower");
//---- initialization done
return(0);
}
//+------------------------------------------------------------------+
//| now do the dance. |
//+------------------------------------------------------------------+
int start()
{
int limit;
int counted_bars=IndicatorCounted();
//---- last counted bar will be recounted
if(counted_bars>0) counted_bars--;
limit=Bars-counted_bars;
//---- calculate values
for(int i=0; i
To win you have to risk loss
Tham gia từ Jul 11, 2011
38bài viết
Sep 22, 2015 at 15:56
Tham gia từ Jul 11, 2011
38bài viết
Yes please.
Thanks!!!
Thanks!!!
To win you have to risk loss

*Nghiêm cấm sử dụng cho mục đích thương mại và spam, nếu vi phạm có thể dẫn đến việc chấm dứt tài khoản.
Mẹo: Đăng ảnh/url youtube sẽ tự động được nhúng vào bài viết của bạn!
Mẹo: Dùng @ để tự động điền tên người dùng tham gia vào cuộc thảo luận này.