Information

Username: jani
Member since: 05 Apr 2019
Last login: 12 Mar 2024
Status: Active

Activity

Where Created Comments
Algorithms 11 28
Forum Topics 4 49
Jobs 8 2

About

Entrepreneur and co-founder of financial service companies with +20 years of trading experience. I have no official setup nor web pages as I'm here to share and test out cTrader Forum and facilities.

Last Algorithm Comments

jani's avatar
jani · 2 years ago

MACD is now a standard indicator on cTrader. With the above, you can choose which MA to use.

jani's avatar
jani · 2 years ago

Why are you posting someone else's indicator??

jani's avatar
jani · 2 years ago

Thanks, an excellent indicator. I made a version without the "Close.fold..." feature, as I do not understand how that works and I needed to write the calculation as a function to incorporate this  to my cBot indicator

jani's avatar
jani · 4 years ago

There are pretty decent Gartley indicators open-source on MT4. Anyone interested to do a programming project on Freelancer.com to convert to cAlgo send me message Telegram: @Fibonacci2011.  

 

I can do some programming myself, but I think Gartley pattern is beyond my capabilities.

jani's avatar
jani · 4 years ago

Hello Cyfer,

Thank for sharing. This is a really clever way to look at tick volume!

jani's avatar
jani · 4 years ago

Great job, Thanks!

 

I wonder how to make this work on tick charts also?

jani's avatar
jani · 4 years ago

... you can also replace/add to avoid wrong mode values:

 

        [Parameter("Mode", DefaultValue = 1, MaxValue = 2, MinValue = 1)]
        public int mode { get; set; }

jani's avatar
jani · 4 years ago

Thanks for sharing.

I noticed that the mode parameter was not working correctly, and Mode =2 was is not showing 

All you need to do is just void this line

 mode = mode > 2 ? 2 : mode < 1 ? 1 : mode;

as:

 

// mode = mode > 2 ? 2 : mode < 1 ? 1 : mode;

Now both modes are showing

jani's avatar
jani · 4 years ago

Sorry, but why are you re-posting the same T3 indicator I have posted here before??

jani's avatar
jani · 4 years ago

Great Script, thanks a lot! This is really helping as cTrader has quite a bit memory leakage and seems not to be able to handle well multiple (over 12 or so) open charts without crashing.

jani's avatar
jani · 4 years ago

... but the truth is no indicator will help one much, unless one understands the market maker dynamics and games... :)

jani's avatar
jani · 4 years ago

Now with the update and normalized CCI values indicator should be better. (CCi negative values influenced average too much even when capped to -+200 ). Now no need by default to weight other oscillators.

You can also use "Multiply All Periods"  to see longer term momentum

jani's avatar
jani · 4 years ago

This solution is no longer working.

 

File is not there anymore

jani's avatar
jani · 4 years ago

I tried this one out, very nice thank you. just that my cTrader platform keeps crashing on my tabletop. Took out some indies but still crashing

jani's avatar
jani · 4 years ago

I have been told by a programmer that there is an issue with cTrader Pivots and unfortunately, it seems like it can't be solved.

Market Data Series containing candle stick info is what makes one able to draw a line on the chart representing the Pivot. There is no way to get a Market Data Series based candle in tick charts or any time-based chart below 1 minute and for this reason there is no way to get the correct info on cAlgo API and draw correct Pivots on tick charts or any time-based charts below 1M!!

Please let me know if you think you have a solution to this problem!!

jani's avatar
jani · 4 years ago

I have been told by a programmer that there is an issue with cTrader Pivots and unfortunately, it seems like it can't be solved.

Market Data Series containing candle stick info is what makes one able to draw a line on the chart representing the Pivot. There is no way to get a Market Data Series based candle in tick charts or any time-based chart below 1 minute and for this reason, there is no way to get the correct info on cAlgo API and draw correct Pivots on tick charts or any time-based charts below 1M.

Please let me know if you think you have a solution to this problem!!

jani's avatar
jani · 4 years ago

I have been told by a programmer  that there is an issue with cTrader Pivots and 
unfortunately, it seems like it can't be fixed,
Market Data Series containing candle stick info is what makes one able to draw a line on the chart representing the Pivot. Because there is no way to get the candle in tick charts as a
Market Data Series, there is no way to get the correct info on Calgo API and draw correct Pivots on tick charts or any time-based charts below 1M!!


Please let me know if you think you have a solution to this problem!!

jani's avatar
jani · 4 years ago

Actually this indicator has the same problem as all other cTrader pivot indicators here - it will not draw the pivots correctly on tick charts (and likely on other non-minute/ time based charts)

jani's avatar
jani · 5 years ago

I'm new to cTrader and have quite limited C# coding ability. Could someone please explain how do I update  inclusion references in the cBot code for the custom indicators?

jani's avatar
jani · 5 years ago

Thank you for sharing your code!

I'm looking for a brief and fool proof way to make my custom indicators more efficient.

I think very good way is to let indicator to make calculations only on a new bar, as you have done in your code.

 

I have used following code for that:

  int lastindex = 0;
    
            if (IsLastBar)
            {
                if (index != lastindex)
                    lastindex = index;
                else
                    return;
            }

Any opinion about this one?

jani's avatar
jani · 5 years ago

I have T3 indicator modified for MT4, so that it will show Red/Greed/Grey line according to preset threshold angle values. I made this indicator to help test and program automated systems.

I'm moving from MT4 to cTrader and Ninja and I'd like to take some of my best indicators with me.

I'm considering starting a freelancer.com project to do this. If there is someone interested to join my project, please contact me 

Last Jobs Comments

jani's avatar
jani · 4 years ago

Hello,

 

thank you both for your replies and offers.

I already received help with the code. It was a small problem, but the real issue was that my template which just has gotten too complicated for me to debug. In future, I'll structure the template differently by keeping most of the logic outside the template and just call indicators.

 

I'm always looking for programmers who are familiar with cAlgo API, so please drop me a word at @Fibonacci2011 at Telegram if it is ok for me to contact you in future.

jani's avatar
jani · 4 years ago

Hi,

 

I'm having a Pivot (daily, weekly monthly)  indicator programmed for cTrader. Problem with current free Pivots for ctrader is that they do not work on tick charts and some of them have bugs.

If you want to co-op in this project send me email at fibonacci_1972-ctrader@yahoo.com