Topics
06 Aug 2021, 11:08
 838
 3
29 Aug 2018, 16:38
 1
 795
 1
Replies

nata2792@gmail.com
17 Jun 2024, 03:15

RE: RE: RE: RE: My Strategy does not appear in search result even so it fulfills all requirements

Kaspricci said: 

PanagiotisCharalampous said: 

Kaspricci said: 

PanagiotisCharalampous said: 

Hi there,

Do you have open positions?

Best regards,

Panagiotis

Not now. But every day I open new positions and close them. As you can see from my trading history. 

As per the requirements, only strategies with open positions are shown

What is the point in requiring an open position all the time just to list the strategy? So because my strategy opens only once a day a position you won’t show it in the search results? That doesn’t sound meaningful to me.

 I have a second strategy which opens more frequently positions but sometimes it also has no positions open and still is shown as active.

i will check whether status changes once a new position is opened today.

BTW: when I use the search and enter „London“ I can find my strategy. Even when not logged in into the web platform. So the statement that the strategy is not listed is only half true. 

UPDATE: I can confirm that my strategy is shown as active as soon as there is one open position. So yes, system works as designed. I just don't understand the rational behind. Why forcing strategy providers to have open positions all the time? Especially since it is potentially worse for someone to invest in a strategy which has open positions.

Yeah kind of ugly rules, I don't know why they changed to those too but anyway, using my own money cool.


@nata2792@gmail.com

nata2792@gmail.com
08 Jun 2024, 09:46

RE: How to get the volume of each bar drawn?

Spotware said: 

OnBar event happens when new bar is opened. At that moment MarketSeries collection already contains tick from new bar. It means that last bar is not formed and in general cases open = high = low = close and TickVolume equals 1. If you want to access last formed bar you need take previous one.

You need to change your code:

protected override void OnBar() {   var close = MarketSeries.Close.Last(1);   var high = MarketSeries.High.Last(1);   var low = MarketSeries.Low.Last(1);   var tickVolume = MarketSeries.TickVolume.Last(1);    ... }

 

So accessing the other previous bars' volumes is still not possible right? Only last bar? We still have to create arrays to store each bar volume like usual?


@nata2792@gmail.com

nata2792@gmail.com
09 Aug 2021, 08:47

RE:

You gave me hope. I appreciate it!

PanagiotisCharalampous said:

Hi there,

It is a known issue and will be fixed in an upcoming update of the platform.

Best Regards,

Panagiotis 

Join us on Telegram and Facebook

 

 


@nata2792@gmail.com