Replies

croucrou
05 Aug 2016, 23:12

You have to try better with your searching. Here it is:

/api/guides/indicators#el12


@croucrou

croucrou
05 Aug 2016, 17:35

Hi,

if noone gives you a better answer, try to:

1. find all positions by Symbol with Positions.Find,

2. measure each positions' pips by calculating difference between current price and entry price,

3. add up the pips of the all found positions for the Symbol.


@croucrou

croucrou
03 Aug 2016, 03:21

Well, maybe not no matter the length, but it expects at least three lines of text. I have been wondering, how come some other uploaders write only one line of description?


@croucrou

croucrou
02 Aug 2016, 14:51

See the "Sample Close Profitable Positions" bot.


@croucrou

croucrou
02 Aug 2016, 01:40

Did you see this:

/forum/indicator-support/2451


@croucrou

croucrou
02 Aug 2016, 00:12

The angle changes as you zoom.


@croucrou

croucrou
17 May 2016, 16:35

Maybe you are looking for the Minimum of Position.GrossProfit?


@croucrou

croucrou
30 Apr 2016, 14:26

Use "PositionClosedEventArgs" with conditions:

"if" position's gross profit <= 3$ check both conditions:

"if" position's trade type = buy, execute sell,

"if" position's trade type = sell, execute buy.


@croucrou

croucrou
16 Apr 2016, 17:03

You can print the values to the log:

Print(variable);

 


@croucrou

croucrou
10 Apr 2016, 19:23

See this:

/forum/calgo-reference-samples/825

 


@croucrou

croucrou
03 Apr 2016, 20:14

No problem. Great, that you solved your issue.


@croucrou

croucrou
31 Mar 2016, 14:08

 Yes, I know I confused it a bit, but anyway, I think there is something wrong with the added part of the code.


@croucrou

croucrou
30 Mar 2016, 22:56

All indications are that you have done something wrong while adding the third moving average.

I assumed above, that the positions' execution has been missed and that has been the reason for printing the values. Operator different from "&&" could cause that.

If the positions open and close correctly and only the printed values are wrong, it seems you have not been refering to the values of that moving average or expected bar.

Check carefully the added part of the code, with emphasis on printing line and definition of that moving average (period or bar number).

 


@croucrou

croucrou
30 Mar 2016, 15:43

Maybe you formulated your "if" conditions improperly and it is satisfied after the second condition is met.

Is it possible to paste that part of the code here?


@croucrou

croucrou
28 Mar 2016, 14:45

Actually this needs one more thing to work. Now it is complete:

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(14);
        }

        public override void Calculate(int index)
        {
            if (!IsLastBar)
                return;

            if (adx.ADX.LastValue > 20)
            {
                ChartObjects.RemoveObject("Alert");
                ChartObjects.DrawText("Alert", "ADX above 20!", StaticPosition.BottomLeft, Colors.Yellow);
            }
        }
    }
}

 


@croucrou

croucrou
27 Mar 2016, 01:55

You can do this like this:

using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;

namespace cAlgo.Indicators
{
    [Indicator(IsOverlay = true)]
    public class MultiSymbolMarketInfo : Indicator
    {
        private Symbol symbol1, symbol2, symbol3, symbol4, symbol5, symbol6, symbol7;

        [Parameter(DefaultValue = "EURGBP")]
        public string Symbol1 { get; set; }

        [Parameter(DefaultValue = "GBPUSD")]
        public string Symbol2 { get; set; }

        [Parameter(DefaultValue = "EURUSD")]
        public string Symbol3 { get; set; }

        [Parameter(DefaultValue = "EURJPY")]
        public string Symbol4 { get; set; }

        [Parameter(DefaultValue = "AUDJPY")]
        public string Symbol5 { get; set; }

        [Parameter(DefaultValue = "EURCAD")]
        public string Symbol6 { get; set; }

        [Parameter(DefaultValue = "GBPJPY")]
        public string Symbol7 { get; set; }

        private double spread(Symbol symbol)
        {
            return Math.Round(symbol.Spread / symbol.PipSize, 1);
        }

        private string format(Symbol symbol)
        {
            if (symbol.Code.Contains("JPY"))
                return string.Format("{0}\t\t Ask: {1}\t Bid: {2}\t Spread: {3}", symbol.Code, symbol.Ask, symbol.Bid, spread(symbol));
            else
                return string.Format("{0}\t Ask: {1}\t Bid: {2}\t Spread: {3}", symbol.Code, symbol.Ask, symbol.Bid, spread(symbol));
        }

        private string text(Symbol symbol)
        {
            return format(symbol);
        }

        private Colors color(Symbol symbol)
        {
            if (spread(symbol) >= 2)
                return Colors.Lime;
            else
                return Colors.Yellow;
        }

        private void printText(string newLine, Symbol symbol)
        {
            ChartObjects.RemoveObject(text(Symbol));
            ChartObjects.DrawText(symbol.Code, newLine + text(symbol), StaticPosition.TopLeft, color(symbol));
        }

        protected override void Initialize()
        {
            symbol1 = MarketData.GetSymbol(Symbol1);
            symbol2 = MarketData.GetSymbol(Symbol2);
            symbol3 = MarketData.GetSymbol(Symbol3);
            symbol4 = MarketData.GetSymbol(Symbol4);
            symbol5 = MarketData.GetSymbol(Symbol5);
            symbol6 = MarketData.GetSymbol(Symbol6);
            symbol7 = MarketData.GetSymbol(Symbol7);
        }

        public override void Calculate(int index)
        {
            if (!IsLastBar)
                return;

            printText("", symbol1);
            printText("\n", symbol2);
            printText("\n\n", symbol3);
            printText("\n\n\n", symbol4);
            printText("\n\n\n\n", symbol5);
            printText("\n\n\n\n\n", symbol6);
            printText("\n\n\n\n\n\n", symbol7);
        }
    }
}

 


@croucrou

croucrou
25 Mar 2016, 18:29

The names of the added symbol names are just built of smaller letters and the words are more narrow. You could add one more "/t" after these symbol's codes as they need one more "Tab" to get to the same column. You might want to check that in any text editor.

I am using Chrome and have no issues.


@croucrou

croucrou
24 Mar 2016, 20:49

To see how to close all open position, you might take a look at the code of the other robot closing profitable positions by using "foreach".


@croucrou

croucrou
22 Mar 2016, 17:01

Not directly, but I think you could try use one ofthe indicator as nested.


@croucrou