Topics
Replies
PanagiotisCharalampous
04 Apr 2018, 09:56
Hi all,
This tool is in our plans but currently we are working on higher priority features. We hope that we will be able to start working on this as well in the near future.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Apr 2018, 09:40
Hi Alexander,
Yes it is. You can read here how to do this.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Apr 2018, 09:35
Hi pieroim,
Thanks for posting in our forum. Currently it is not possible to install cTrader on a custom folder of your choice.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Apr 2018, 09:30
Hi Gwave,
Can you try to download the application from this link and let me know if it works?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 16:18
Hi dordkash@gmail.com,
That is my point. Spotware cTrader Beta might have a different price feed than your broker, therefore it would be better to test your cBot on your broker's cAlgo instead.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 16:03
Hi dordkash@gmail.com,
There is no gap in the price. We just have a different price feed than the broker you posted. If you are backtesting a cBot, I would advise you to backtest it on the price feed of your broker, using that broker's cAlgo.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 15:39
Dear dordkash@gmail.com,
Thanks for the screenshots. Indeed there are differences between the charts but such differences are expected between different price feeds and liquidity providers. I don't see anything suspicious.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 15:15
Hi dordkash@gmail.com,
Could you please provide some screenshots of the issue? Please also have in mind that brokers are responsible for the price feed therefore you might need to contact your broker for such an issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 15:06
Hi lec0456,
Dayend IndicatorDataSeries and Robots MarketSeries have different lengths. When you call
div.Dayend[MarketSeries.Close.Count - 1]
you are requesting data out of the bound of Dayend series and that is why you receive NaN value. If you change it to
div.Dayend[div.Dayend.Count - 1]
it should work same as Last(0) and LastValue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 14:03
Hi OneMillionProfit,
The maximum length is 100 for both fields.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 09:18
Hi all,
Could you please contact FXPIG for that? It seems to be a broker specific issue.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 09:10
Hi pozhy,
Thanks for posting in our forum. It is not clear what you mean to import forex data in visual studio. Do you mean to read a file using C#? Please elaborate so that we can help you more.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
03 Apr 2018, 09:06
Dear cintuanginbox,
Thanks for posting in our forum. You can access market depth data in cAlgo using the GetMarketDepth function.
Let me know if this helps,
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Apr 2018, 17:06
RE:
megha said:
Hello,
Please find below the request and response message
Request msg for trade login
8=FIX.4.49=11435=A49=icmarkets.330860756=cServer57=TRADE50=TRADE34=152=20180402-09:52:4298=0108=30553=3308607554=887710=200
if i use QUOTE instead of TRADE , it is working
Trade login8=FIX.4.49=16435=534=149=cServer50=TRADE52=20180402-09:52:42.69656=icmarkets.330860757=TRADE58=TargetSubID is assigned with the unexpected value 'TRADE', expected 'QUOTE'10=245
Please suggest me
thank you
Hi megha,
Tag 50 is wrong, you should use your account id there.See below a correct login message
8=FIX.4.49=12135=A49=ctrader.317949656=CSERVER57=TRADE50=317949634=252=20180402-14:01:0298=0108=30553=3179496554=password10=148
@PanagiotisCharalampous
PanagiotisCharalampous
02 Apr 2018, 12:57
Hi megha,
I also need the port to which you send this message.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Apr 2018, 12:27
Hi megha,
In order to assist you further we will need the exact messages you send. Please share your messages with us and the ports you use to send each message so that we can check and let you know if there is anything wrong with the messages.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Apr 2018, 12:11
Hi lec0456,
Can you share your indicator and an example that will allow us to reproduce the issue, so that we can investigate further?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Apr 2018, 10:11
Hi lec0456,
Drawing chart objects is not available in backtesting. This feature will be added in a future version.
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
02 Apr 2018, 10:06
Hi Alexander,
Currently there isn't such a feature. But you can still change the name before saving a file. Isn't that working for you?
Best Regards,
Panagiotis
@PanagiotisCharalampous
PanagiotisCharalampous
04 Apr 2018, 10:20
Hi lec0456,
Ok I think I understand your point. Maybe you could tweak a bit the indicator and replace the NaN values with 0 so that it behaves as you expected. See below
With the above change, NaN values will be replaced with zeros and will not be skipped by last value functions.
Let me know if this works for you.
Best Regards,
Panagiotis
@PanagiotisCharalampous