Information
Username: | jani |
Member since: | 05 Apr 2019 |
Last login: | 11 Nov 2024 |
Status: | Active |
Activity
Where | Created | Comments |
---|---|---|
Algorithms | 11 | 29 |
Forum Topics | 4 | 49 |
Jobs | 8 | 2 |
About
Last Algorithm Comments
MACD is now a standard indicator on cTrader. With the above, you can choose which MA to use.
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
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.
... 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)
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
Sorry, but his has very little to do with Wyckoff's theory. I'm working on the Wyckoff indicator so if you're interested in developing a real one get in touch with me zenchimp@yahoo.com