Advice to New Starters / How to Begin

it's all about drawdown, 4 tick risk with profit factor of 1.5 the sky is the limit.

i have been thinking 1000 lot x 6 trades a week x 52 weeks x 1 point profit = 15+ mil a yr. and that's on one market with no fixed ratio.

Mine is 16:16 ticks MFA MFE is in line ..doesn’t hold overnight, closes on session close.
 
It’s running on a server now.
 

Attachments

  • AC6DE59A-F79E-488D-96D9-E5DFD105CF1C.png
    AC6DE59A-F79E-488D-96D9-E5DFD105CF1C.png
    755.9 KB · Views: 73
with respect different opinion here.

i have been at institutions where i was the surge in order flow. a surge in order flow is not a guarantee of market movement. momentum readings of price itself is really all you need.

volume has no bearing on price direction but price direction does and momentum best tracks that. i never understood why people waste any time what so ever with volume when price is what you trade.


I understand what you say is true for you. On the surface yes it’s only the change in price that has the possibility of profit.

With that said, it is also true volume leads price.

It’s certainly a distillation and simplistic reduction of a complex concept.

What’s makes it more difficult to discern is that is operates on negative logic with price permitting or killing the measuring of volume.

Price and volume form a relationship and do not exist in liquid continuous dual auction markets without each other.


If volume doesn’t mean anything, then your prolly killin’ it in the forex markets where no accurate reflection of market volume exists.
 
I have spent some time studying python and am picking up machine learning concepts and thought to try algorithmic trading to make fast money - but quickly realized that a lot of hard work goes into making a good algorithmic trading strategy and program. However, the problem of how to write a good trading algorithm with Machine Learning techniques has grabbed me and now I want to work seriously towards developing one.

So this post is to ask for what resources you used to start out, how you went about writing your first successful trading algorithm, and perhaps which mistakes you would advise someone else to avoid making.

If anyone has a link to a similar post in the past that would be very helpful also.

Firstly, pick the appropriate development language. For automated tasks or web services or scripts, Python is a 'great' choice, however it is not suitable for enterprise application requirements. This means bigger projects / services / application frameworks which may have multiple modules, specific disparate hosting requirements and library support etc - which in turn need some robustness around abstracted logic's/deployment/maintenance etc, and where the money/time spent in it should be optimal. With that constraints, I highly recommend switching from Python to C# asap.

Whilst you will lose a lot of learning and training material reference samples along the way - these can easily be converted to C#, and if you know python the move will not be too painful, so best to get it done early. I'm not a python 'hater' and on paper it has some advantages which make it 'easier' for many people to 'quickly work with or hashout and test a basic function'. This comes at a big cost however imo in terms of overall capability and ability to handle complex internal application 'routing'.

What 'tree' (unsupervised, supervised, reinforcement learning) do you wish to explore? All can be used to built an ATS, but will produce different style of useful trading outcomes and have different data preparation requirements.

ML is not an 'exact science', and as such experimentation with data and run time variables is the key to success - just don't expect it to be the holy grail. Checkout https://bhrnjica.net/ for some samples in c#.

One last tip. Your models (neural networks) should be per instrument (don't try to build a one size fits all model), and persistent (keep your brain state 'alive' 24/7 365 days a year).
 
Back
Top