
Information
Username: | jani |
Member since: | 05 Apr 2019 |
Last login: | 26 Sep 2023 |
Status: | Active |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 11 | 28 |
Forum Topics | 1 | 44 |
Jobs | 8 | 2 |
About
Last Algorithm Comments

Why are you posting someone else's indicator??

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

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.

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

Great job, Thanks!
I wonder how to make this work on tick charts also?

... you can also replace/add to avoid wrong mode values:
[Parameter("Mode", DefaultValue = 1, MaxValue = 2, MinValue = 1)]
public int mode { get; set; }

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

Taking about PROOF of SCAM!!
Here we go:
Here is a list of "profiles" that praise the indicator. Quite strange that ALL of these profiles are created the same day these "people" post the first and only comment to the forum.
I my view quite clear that someone is creating these fake profiles to promote the commercial indicator!
We do not need these charlatans and snake oil sales people at cTarder community!!
igor.kozlowski.rain
https://ctrader.com/users/profile/30400 - Joined: January 5th - Posted first and only comment: January 5th
basiabieniek8
https://ctrader.com/users/profile/30404 - Joined: January 5th - Posted first and only comment: January 5th
d.gerblich
https://ctrader.com/users/profile/30405- Joined: January 5th - Posted first and only comment: January 5th
myway.msommer
https://ctrader.com/users/profile/30406 - Joined: January 5th - Posted first and only comment: January 5th
multimarecki
https://ctrader.com/users/profile/30408 - Joined: January 5th - Posted first and only comment: January 5th
pawelgawron434
https://ctrader.com/users/profile/30409 - Joined: January 5th - Posted first and only comment: January 5th
pawlo121
https://ctrader.com/users/profile/30410 - Joined: January 5th - Posted first and only comment: January 5th
andrzej.mrozinski
https://ctrader.com/users/profile/30412 - Joined: January 6th - Posted first and only comment: January 6th
ostatnisiew
https://ctrader.com/users/profile/30425 - Joined: January 6th - Posted first and only comment: January 6th
Ps. If you take a look at high-quality trading communities like Big Mike's futures.io/bigmiketrading/ these snake oil salesmen are thrown out from there faster than you can say "open source code converted to commercial indicator..."
I sincerely hope cTrader keeps the community clean of people who act dishonestly!

.. by the way the indicator these people are selling is nothing else but a coloured moving average. by the looks of it it is some sort of MA with (exponential) smoothing, plenty of these available for free!

Here is my proof:
take a look at profiles: d.mrozinski & d.gerblich & igor.kozlowski.rain & marekgoreki - etc. They are all created January 5th, the same day they give their awesome praise for the amazing indicator. Also, these people have absolutely no other interaction with the community, isn't this quite strange??? Clearly these are fake profiles and if cTrader moderator would take a look they would likely to find out that these profiles are created from same the IP address...

Quite strange so many of these "positive comments" appear on the same day many of these people are registered and they all have no other comments or activity than praising this paid indicator..
Don't fall for the shameless fake promotions of this scammer!

Hello, if you're selling indicators, please do not label them as "free"

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

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.

It looks like the indicator requires some paid subscription. Very interesting way you have coded this feature in it!

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

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

This solution is no longer working.
File is not there anymore

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

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!!

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!!

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!!

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)

Thank you for sharing your code.
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 indicator calling?

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?

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?

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

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.

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
MACD is now a standard indicator on cTrader. With the above, you can choose which MA to use.