Topics
Replies
croucrou
13 Mar 2016, 22:48
Maybe you can flag it with an integer variable named e.g."myEvents" with "0" as default value.
If the first condition is met, the value of "myEvents" changes to "1".
If both conditions are met, the value of "myEvents" changes to "2".
If "myEvents" equals "1" send an email: "First condition met".
If "myEvents" equals "2" send an email: "First and second condition met" and change the value back to "0".
@croucrou
croucrou
13 Mar 2016, 18:39
RE:
You can do it like this:
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class NewIndicator : Indicator { private DirectionalMovementSystem adx; protected override void Initialize() { adx = Indicators.DirectionalMovementSystem(yourPeriod); } public override void Calculate(int index) { if (adx.ADX.LastValue > 20) { ChartObjects.DrawText("Alert", "ADX above 20!", StaticPosition.BottomLeft, Colors.Yellow); } } } }
@croucrou
croucrou
12 Mar 2016, 19:24
RE:
You can do this like this:
using System; using cAlgo.API; using cAlgo.API.Internals; using cAlgo.API.Indicators; using cAlgo.Indicators; namespace cAlgo { [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)] public class NewIndicator : Indicator { private double open, close, high, low; private Colors color; public override void Calculate(int index) { open = MarketSeries.Open[index]; high = MarketSeries.High[index]; low = MarketSeries.Low[index]; close = MarketSeries.Close[index]; if (close > open) { color = Colors.Yellow; // your UpColor here ChartObjects.DrawLine("candle" + index, index, open, index, close, color, 5, LineStyle.Solid); ChartObjects.DrawLine("wick" + index, index, high, index, low, color, 1, LineStyle.Solid); } if (close < open) { color = Colors.Blue; // your DownColor here ChartObjects.DrawLine("candle" + index, index, open, index, close, color, 5, LineStyle.Solid); ChartObjects.DrawLine("wick" + index, index, high, index, low, color, 1, LineStyle.Solid); } } } }
@croucrou
croucrou
02 Mar 2016, 14:56
Hello,
just hinting at possible solution. Using Windows Forms gives you access to all types of elements you might potentially be interested in.
I am sure it is not a rocket science, if you are familiar with programming and C# and if you really need it of course.
@croucrou
croucrou
20 Mar 2016, 14:04
Thanks for your reply. I regret it is not possible to do within just one line.
@croucrou