robot on tick chart

Created at 09 Apr 2013, 23:04
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
teju's avatar

teju

Joined 07.03.2013

robot on tick chart
09 Apr 2013, 23:04


is it possible to make a robot which works on tick charts.i want to make robot which should work on tick charts.how to do it.need help


@teju
Replies

cAlgo_Fanatic
11 Apr 2013, 11:47

Tick charts will be available in the future.

Alternatively, you may like to look at MarketDepth if you like to utilize that functionality.

If you have a specific algorithm you can post it and we will see if it is possible to implement currently or suggest modifications and help you with the code.


@cAlgo_Fanatic

jfuechsl
01 May 2013, 10:31

tick charts

is there some timeframe when tick charts will be available?


@jfuechsl

algotrader
01 May 2013, 12:41

RE: tick charts
jfuechsl said:

is there some timeframe when tick charts will be available?

You can use this indicator:

/algos/indicators/show/207


@algotrader

hermoso
07 May 2013, 10:02

RE: RE: tick charts
algotrader said:
jfuechsl said:

is there some timeframe when tick charts will be available?

You can use this indicator:

/algos/indicators/show/207

Hello guys!

 

I need some help here. Im using this tick chart indicator. But when i try to access the values inside a code i fail. For example if i want to get the bid.LastValue

//#reference: C:\Users\Leonardo\Documents\cAlgo\Sources\Indicators\Tick Chart.algo

 TickChart ticks;

 ticks = Indicators.GetIndicator<TickChart>();

 Print("{0}",ticks.Bid.LastValue);

"

I get NaN as return.

 

What im doing wrong here.

 

Tks in advance


@hermoso

hermoso
08 May 2013, 07:53

SOLVED!

 

Removing this line

 

if (!IsRealTime) return;

 


@hermoso