Replies

croucrou
20 Mar 2016, 14:04

Thanks for your reply. I regret it is not possible to do within just one line.


@croucrou

croucrou
17 Mar 2016, 13:37

Correct me, if I am not right.


@croucrou

croucrou
15 Mar 2016, 14:59

"Last" refers to price on close of the bar, so the first available value is on the last bar, which is "1".

To access price value on current bar, you could use "lastvalue", which you rather would not need.


@croucrou

croucrou
14 Mar 2016, 21:49

Yes, aren't your entries mistaken?

Are you still happy with the strategy?


@croucrou

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, 22:24

Spotware has made cAlgo user friendly, so there is no need to have extensive knowledge about C#, to deal with basics.


@croucrou

croucrou
13 Mar 2016, 19:59

Learn just what you need and you are going to be fine.


@croucrou

croucrou
13 Mar 2016, 19:02

Use Last(2) instead of Last(1) and Last(1) instead of LastValue?


@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, 22:56

cAlgo does not provide this possibility at the moment.

You can generate a cloud by plotting a shape of dotted horizontal lines. It could be rectangular or even based on price values determined by any lines you have on your chart.


@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
29 Feb 2016, 21:48

RE:

Hello,

 

you can do this, but you need to refer to C# syntax rather than cAlgo.


@croucrou

croucrou
29 Feb 2016, 21:40

Yep, but this might still open hundreds of positions simoultanously and then close them, is that right?

 

I was hoping there is a way to set the limit of positions above which none new are allowed to open.


@croucrou

croucrou
29 Feb 2016, 20:31

RE:

I think you have defined "TimeFrame" as a type of "AtrTimeFrame" and not as a value.

 

Default parameter seems to be the actual value. Try to set its default parameter as e.g. "TimeFrame.Hour" and see if that works.


@croucrou

croucrou
25 Feb 2016, 20:13

RE:

See this:

/forum/calgo-reference-samples/543


@croucrou

croucrou
24 Feb 2016, 17:18

Hi,

 

use "for" loop to do this.

 

        for (int bar = 1; bar <= 300; bar++)
        {
            if (MacdHistogram.Histogram.Last(0) > MacdHistogram.Histogram.Last(bar))
            {
                //your logic here, 'break;' to stop the loop
            }
        }

@croucrou