Topics
14 Sep 2015, 09:20
 2325
 4
27 Aug 2015, 11:07
 2964
 6
18 Aug 2015, 08:11
 4211
 14
27 Feb 2015, 11:20
 2481
 3
Replies

mfedora
01 Oct 2015, 09:58

2 years have passed, and ClosePrice or not.
And in general, at least someone is engaged in the development of libraries for cAlgo?


@mfedora

mfedora
01 Oct 2015, 09:54

RE:

cAlgo_Fanatic said:

We will add this in the future. 

When?


@mfedora

mfedora
14 Sep 2015, 15:52 ( Updated at: 21 Dec 2023, 09:20 )

And


@mfedora

mfedora
14 Sep 2015, 15:04 ( Updated at: 21 Dec 2023, 09:20 )

yet

and


@mfedora

mfedora
01 Sep 2015, 10:31

I decided

ts1 = MSeries1.OpenTime;
ts1.Last(k);

 


@mfedora

mfedora
27 Aug 2015, 14:53

RE:

Paul_Hayes said:

Hello mfedora,

Maybe you should be looking at this for custom applications connecting to the Spotware API.

https://connect.spotware.com/

Thank you. I'll see.

And not on the topic:

I understand there is no function DeInitialize() in the warning indicator?


@mfedora

mfedora
27 Aug 2015, 13:01

RE:

Spotware said:

Dear Trader,

Could you please explain us in more detail what would you like to do?

The x-axis of an indicator is based on time and the y-axis is based on values that may vary based on the indicator.

I want to create in the graphic form. For when you resize the chart, the form also changed. Ie the form must be a child of the schedule.


@mfedora

mfedora
18 Aug 2015, 12:22

RE:
public enum mySymbols
        {
            AUDCAD,
            AUDCHF,
            AUDDKK,
            AUDJPY,
            AUDNZD,
            AUDUSD,
            CADCHF,
            CADJPY,
            CHFJPY,
            EURAUD,
            EURCAD,
            EURCHF,
            EURGBP,
            EURHUF,
            EURJPY,
            EURNOK,
            EURNZD,
            EURSEK,
            EURUSD,
            GBPAUD,
            GBPCAD,
            GBPCHF,
            GBPJPY,
            GBPNOK,
            GBPNZD,
            GBPSGD,
            GBPUSD,
            NZDCAD,
            NZDCHF,
            NZDJPY,
            NZDUSD,
            USDCAD,
            USDCHF,
            USDDKK,
            USDJPY,
            USDMXN,
            USDNOK,
            USDSEK,
            USDSGD,
            USDPLN
        }

        [Parameter("Symbol1", DefaultValue = mySymbols.EURUSD)]
        public mySymbols symbol1 { get; set; }

so ideally

but does not work.

Paul_Hayes said:

can you explain a bit further the problem please.

 


@mfedora

mfedora
18 Aug 2015, 12:04

RE:

track parameter change does not happen?
Some event occurs when you change a parameter?

Paul_Hayes said:

When you create an instance it is the instance of the symbol, you cannot as far as I know dynamically change this, what what you can do as a workaround is this.

        [Parameter("Custom Symbol Name", DefaultValue = "EURUSD")]
        public string CustomSymbolName{ get; set; }
Symbol symbol = MarketData.GetSymbol(CustomSymbolName);

  

 


@mfedora

mfedora
18 Aug 2015, 11:27

RE:

thank you,

first post?

Paul_Hayes said:


        [Parameter("Custom Timeframe")]
        public TimeFrame MyCustomTimeFrame { get; set; }

 

 


@mfedora

mfedora
18 Aug 2015, 09:58

As well as how to make a drop-down list timeframes?


@mfedora

mfedora
27 Feb 2015, 11:23

RE:

mfedora said:

cAlgo and MemoryMappedFile?

It works?

 

Error:

 MemoryMappedFile sharedMemory = MemoryMappedFile.CreateOrOpen("MemoryFile", size * 2 + 4);

 


@mfedora