PanagiotisCharalampous's avatar
PanagiotisCharalampous
26 follower(s) 0 following 1006 subscription(s)
Replies

PanagiotisCharalampous
15 Mar 2019, 10:04

Hi trader.calgo,

You can use the MouseMove event to capture the mouse location at any moment. See below an example


        protected override void OnStart()
        {
             Chart.MouseMove += OnChartMouseMove;
            
        }
        
        void OnChartMouseMove(ChartMouseEventArgs obj)
        {
            Print(obj.TimeValue);
            Print(obj.YValue);
        }

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 10:03

Hi matayas,

Just to let you know that we have managed to reproduce the issue and we will fix it in an upcoming update.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
15 Mar 2019, 10:00

Hi bienve.pf,

There is no Selected state for the objects in the chart. When you say modify, do you mean when objects are dragged on the chart? If yes, you can use DragStart and  DragEnd events.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 17:07

Ηι a.fernandez.martinez,

GetSymbol will return you a Symbol object with general inforrmation about the symbol. GetSeries will return you a MarketSeries with historical prices information of a specific symbol and timeframe.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 15:22

Hi hmozahem,

Unfortunately we could not reproduce internally. Is it possible to arrange a TeamViewer session so that our QA team can inspect the issue? If yes, please send me an email at community@spotware.com

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 14:53 ( Updated at: 14 Mar 2019, 14:57 )

Hi Brian,

Can you please post such ads in the Third Party Products section please? 

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 12:35

Hi fxwisdom1@gmail.com,

The total time a message needs to travel from your application to our servers is the Server latency. Therefore this is the number you should consider. Your assumption about the flow is correct.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 11:40

RE:

terryww2 said:

Thanks for the quick answer. Regarding partially filled market order - isn't market order by definition always filled whole? I'd imagine a buy market order would be partially filled only if there are not enough sell (ask) limit orders in the orderbook.

Hi terryww2,

Your assumption is correct. If there are not enough orders in the order book then the order might be partially filled.

Best Regards,

Panagiotis

 


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 10:47

Hi iulianalinchiru,

You need to cast the object to a ChartTrendLine. See below

var trendline = (chartObject as ChartTrendLine);

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 10:45

Hi terryww2

1) If you send a market order and it is partially filled, you will get Canceled (39=4) status since the non filled part of the order is cancelled. If you place a limit order that is partially filled you will get a partially filled (39=1) status and in Tag 151 you will receive the remaining volume to be filled.

2) The most common case for 39=8 is insufficient funds.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 09:59

Hi guys,

The issue has been fixed in v3.5. Can you please check if you can reproduce?

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 09:47

Hi fxwisdom1@gmail.com,

Both numbers are important. The Proxy latency is the latency between your computer and our proxy in New York and Server latency is the  between your computer and our server in London.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 09:47

Hi iulianalinchiru,

Trend line coordinates are kept in Time1, Time2 and Y1, Y2 properties. See here.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
14 Mar 2019, 09:28

Hi Ivan,

At the moment you cannot change candlestick colors using the API.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Mar 2019, 16:56

Thanks dmn,

We managed to reproduce it and we will fix it.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Mar 2019, 14:05

Hi erikvb,

I did not backtest it. I just fixed the build errors and made sure that it doesn't throw exceptions.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Mar 2019, 12:27

Hi hmozahem,

Thanks, we will have a look.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Mar 2019, 12:26

Hi Dagfx,

Try to restart the application. If you still get the message, please press the Details button and send us the details of the problem.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Mar 2019, 09:19

Hi Noppanon,

You can try Chart.ObjectUpdated event.

Best Regards,

Panagiotis


@PanagiotisCharalampous

PanagiotisCharalampous
13 Mar 2019, 09:13

Hi pozhy,

No, you can refresh the chart whenever want. In your case you can refresh the chart every hour using the TimerTick event.

Best Regards,

Panagiotis


@PanagiotisCharalampous