Algotrading
Resources
algo-trading basics https://algo-trading.readthedocs.io/en/latest/data-science-basics.html a github
Python and stocks
https://github.com/LastAncientOne/SimpleStockAnalysisPython
Zajimavé indikátory
Podívat se na Prior SAR: The SAR value for previous period.
Extreme Point (EP): The highest high of the current uptrend.
Acceleration Factor (AF): Starting at 0.02, increases by 0.02 each time the extreme point makes a new high. AF can only reach a maximum of 0.2, no matter how long the uptrend extends.
Dále se podívat na Commodity Channel Index (CCI)
The Commodity Channel Index (CCI) helps identify price reversals, price extremes, and trend strength.
Developed by Donald Lambert, CCI is a momentum-based oscillator used to help determine when an investment vehicle is reaching a condition of being overbought or oversold. Popis zde - vyzkouset
A také ROC
Popis základních indikátorů a jak na ně v pythonu je zde (projít!!)
https://algo-trading.readthedocs.io/en/latest/technical-analysis.html
a dale
Rsi divergence
https://github.com/SpiralDevelopment/RSI-divergence-detector
AI
Zajimavý článek základy Recurrent Neural Networks a https://towardsdatascience.com/recurrent-neural-networks-rnns-3f06d7653a85
Příklad - singlefeature LSTM model in pytorch.
Stock Machine learning algorithms on github
Zadání: predikční modely (HFT, 15s dt, střednědobý)
- - learning data
- vývoj ceny - timeseries relevantní frekvence (trades, 15s ohlc a třeba 1h(1d) ohlc)
- dopočítané/doplněné sloupce k timeseries (indikátory, calendar data a další time related data)
- další doplňující atributy - jako premarket, fair price, trend z minulých období, odhad dnešního dne(dopočítávaný), celkový sentiment(může doplňovat jiný model z news)