
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Today marked another important step forward. The engine can now operate as a standalone application, synchronising its parameter values with the user application connected to it. The application is connected as before, but now it can request values that are set by the engine functionality. Thus, this is a transition to a new level of interaction between the programs. The engine as a standalone program can accumulate its functionality and extend the API provided to the applications.
In the case of the price stack, - it has become a standalone application (which I will finish tomorrow, the day after tomorrow), and works as an indicator. Using the connection, users can retrieve the values of this cup and override them, returning them to the cup in a modified form. For example: The price in one of the glass fields has been analysed by the user code and it turns out to be the level of some important indicator. The user sends their string marker to that field and it will appear next to that price. This opens up interesting new possibilities for the development of both engines and user programs.
SZZ. The GUI slider events, previously only sent to the app, now also go into the engine's internal functionality and parallel handling of events is performed at both ends - in the engine (according to my code) and in the user application (according to user code). Clicking the button triggers both the engine functionality and the functionality of the connected application.Will there be hotkeys?
Another thing missing from the cup is the profit if you close now on the market, i.e. filling the cup - relevant for positions slightly larger than small (e.g. 100-150 lots).
What is the actual processing speed of the incoming data?
How is the data allocated to the price levels?
Is it a for loop or is there a variable with data for each level?
The fact that you have chosen the type of mapping of the cup on the Western terminals is correct.
I would suggest to add to the cup, management of linked OCO orders up to three levels.
And in general you can take any functional western Market Dock and see what is implemented in it.
Or see how QScalp scalper drive is implemented.
What language is the program written in?
What is the actual processing speed of the incoming data?
How is the data distributed by price levels?
In a for loop or for each level has its own variable with data?
The fact that you have chosen the type of mapping of the cup, like in the Western terminals, is correct.
I would suggest to add to the glass, management of linked OCO bids up to three levels.
Here is the code for distributing the data to the cells in my cup:
To record incoming data, I made a 100-cell array. I distribute incoming data from the centre of the array (cell 49) to the asc and bid side, calculating the closest price to the asc and bid side beforehand.