How about Poloniex support for Monero (XMR) trading?
I can donate to make this happen.
I'll think about it.
Which software package did you use to code the software? I am seeing QT but which version? Any link? I would like to look at enhance the charts component and would like the same IDE as you. It isnt a VS project as Visual Studio doesnt recognize it. I tried QT 5.5 and its still not recognized as a QT project.
Thanks!
Qt 5.X.X supported
@ Ighor
Do all (or only some) of the programmatic commands query the application itself, or does it query the server directly?
For example, if I write trader.get("AskPrice")
Does this query the application internally that collects this information, or does this query go to the api and the server answers the request?
----------------------
The reason I ask is because I am trying to determine if by writing a heavy number of queries if I am accidentally hammering the server api (through my internet connection) or if I am just hammering the application with the information it has available on hand, to answer the requests?
I noticed that in one command (asksprice, volume) you state that the application has to have a certain number of available order book rows visible for it to work properly. But it is unclear if that is because the application itself is answering the queries with whatever information it has on hand
OR
If the application just has a quirk that needs a certain number of internal settings to assigns internal values and then hands off the queries to an external server api to get an answer.
I am trying to prevent hammering the BTC-e exchange with queries so I would like to know if the application acts like an aggregate of data. In so far as the application answers some of the queries itself and only a few specific commands are answered by the server itself.
Application send requests to exchange with fixed interval and store everything in RAM.
If you write trader.get("AskPrice") you just access variable in RAM.
There is no need to make loop and many of trader.get("AskPrice"), you should use trader.on.. events instead.
Only open/cancel orders cause more requests via Script.
Does the software offers the possibility of configuring a trading BOT? Are you guys using it to help with arbitrage trading? Is it safe to use?
Current version not supports arbitrage. It will com in future updates.
Hi guys,
i'm rather a newbie in JL scripting and i have the following question:
JL script offers me a function to get the BTC volume for the last 10 Minutes.
var tenMinVol = trader.get("10MinVolume")
My question is now, how can i implement this for 1, 3, 5, 15 Minutes and so on.
I can't see where I can get something like the last amount or something similiar.
Have I missed something?
My idea was to add last amount for a specific time, maybe with a timer and so I get the volume
of this specific time range.
Good idea or not?
Any help is appreciated!
Greetz Aknot
PS: Sorry for my bad english, it's not my native language.
This will be easy to do with upcoming update of JL Script.
You will able to use loop and query each historical trade to create own calculations.