Page 1 of 1

Command Line trading

PostPosted: Tue Dec 15, 2015 10:48 pm
by jgwill
Hi all,

I hope everything is great!
I am having the idea to create my entry using a command line interface and I am wondering if anyone would have code c# project for that ?

The exec example would look like:
CreateEntryOrder.exe -sell -symb EURUSD -entry 1.053 -stop 1.073

Regards,
Jgwill

Re: Command Line trading

PostPosted: Wed Dec 23, 2015 6:04 am
by Julia CJ
Hi Jgwill,

We have two examples on C# that work similar to the way you want. One of them uses TablesManager, the second one does not. You can find them at:
1. samples/cs/dotnet20/TableManagerSamples/CreateEntryOrder
2. samples/cs/dotnet20/NonTablesManagerSamples/CreateEntry
By the way, parameters are usually taken from setting files, not from the command line.

Re: Command Line trading

PostPosted: Tue Oct 10, 2017 9:05 pm
by jgwill
Thanks Julia