Topics
08 Feb 2023, 04:45
 0
 1047
 2
02 Nov 2020, 17:16
 0
 1419
 2
02 Nov 2020, 00:46
 1151
 3
Replies

matfx
08 Feb 2023, 04:00

this strategy not available. Just for info.


@matfx

matfx
08 Feb 2023, 03:58

I have a look at it and what i can say is the AI not yet efficiently gives the ctrader programming ability, because the code it provide still need to correct manually.


@matfx

matfx
04 Nov 2020, 05:32 ( Updated at: 21 Dec 2023, 09:22 )

The indicator working fine.

 


@matfx

matfx
03 Nov 2020, 04:00

Convert Murrey math code from MT4/MT5 code to cAlgo

Hi,

MetaTrader is the most popular platform for a lot of indicators.

I'm going to study C# programming language and trying to convert Murrey Math indicator to cAlgo.

Will come back.


@matfx

matfx
02 Nov 2020, 17:11

RE:

PanagiotisCharalampous said:

Hi matfx,

You need to contact your broker regarding this issue.

Best Regards,

Panagiotis 

Join us on Telegram

 

Hi Panagiotis,

I have contact my broker. Issue resolved. Thanks

 

 


@matfx

matfx
30 Nov 2016, 15:27

Unfortunately the OP doesn't share the cbot, maybe he want to sell it.


@matfx

matfx
28 Nov 2016, 18:30

Heiken Ashi chart performs better than normal candlestick chart, eliminate many emotional trades. So hopefully Spotware will consider this function.


@matfx

matfx
25 Nov 2016, 01:18 ( Updated at: 21 Dec 2023, 09:20 )

Daily Open Line

Hi mat,

I'm also new to CAlgo and also at the same time trying to convert the mql4 version of daily open line for Ctrader.

But in return same as you, can't get the actual working version for Ctrader. Nontheless i won't give up and so i would like to share here another code which is convert to mql5 code.

The mql5 version below :

#property indicator_chart_window
#property indicator_buffers 1
#property indicator_plots   1
#property indicator_label1  "Daily open line"
#property indicator_type1   DRAW_ARROW
#property indicator_style1  STYLE_DOT
#property indicator_color1  clrGray

input int TimeShift = 0; // Time shift (in hours)
double openLine[];
//
//
//
//
//

int OnInit() { SetIndexBuffer(0,openLine,INDICATOR_DATA); return(0); }
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[])
{
   if (Bars(_Symbol,_Period)<rates_total) return(-1);
      for (int i=(int)MathMax(prev_calculated-1,0); i<rates_total && !IsStopped(); i++)
      {
         string stime = TimeToString(time[i]+TimeShift*3600,TIME_DATE);
            openLine[i] = (i>0) ? (TimeToString(time[i-1]+TimeShift*3600,TIME_DATE)==stime) ? openLine[i-1] : open[i] : open[i];
      }
   return(rates_total);
}

The mql5 version of Daily Open Line work as the same as the old MT4 version.

So i'm very hopeful someone can help how to convert it to C# language.

Thanks.

matfx

 


@matfx

matfx
08 Nov 2013, 07:26

Harmonics Pattern Indicator

Will be nice if some good coders can program such indicator. Currently harmonics pattern indicator works greatly on MT4 using ZUP. The indicator should identify gartley, butterfly, AB=CD, bat and crab pattern. Really appreciate if someone can do it.
 


@matfx

matfx
17 Jun 2013, 10:24

Successful installed dotnet 4.0 using wine. Install ctrader only half way through and came out error message.

Picture attached.

I do hope ctrader developers can come up something for linux users, i mean write another application that specify target for mac  and linux users.

 

 

 

 

 

 


@matfx