I am a totally beginner in Python. I am studying it now. Here's an algo I've just created(!) with Python for the first time and want to share with you guys. Please give me a lot of suggestions, recommendations and help. I am going to build more advanced and robust models from this simple strategy model. Please help. Thanks.
Strategy:
As you can see in the source code, this strategy is a very simple MA strategy. If price > MA (60) then buy, if price < MA(60) then sell. There's no risk managment and money management tool yet. #
For next step, I want to add here the following features.
1. Profit target ( '%' or 'number of tick' or '$')
2. Stop loss (same as #1)
3. ATR
4. Other variables: Fast Stochastic
Please hel me how to do this.
Thanks.