├── API └── thb_rate_api.py ├── EA ├── ADX Cross EA.mq4 ├── MACD Sample.mq4 ├── MyfirstRobot.mq4 └── readme.txt ├── README.md ├── _config.yml ├── amibroker ├── exp_01.afl ├── exp_02.afl ├── exp_03.afl ├── exp_04.afl ├── exp_05.afl ├── exp_06.afl ├── myindicator_1.afl ├── myindicator_2.afl ├── myindicator_3.afl ├── myindicator_4.afl ├── myindicator_5.afl ├── myindicator_6.afl ├── myindicator_7.afl └── readme.txt └── quant └── start.txt /API/thb_rate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/API/thb_rate_api.py -------------------------------------------------------------------------------- /EA/ADX Cross EA.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/EA/ADX Cross EA.mq4 -------------------------------------------------------------------------------- /EA/MACD Sample.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/EA/MACD Sample.mq4 -------------------------------------------------------------------------------- /EA/MyfirstRobot.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/EA/MyfirstRobot.mq4 -------------------------------------------------------------------------------- /EA/readme.txt: -------------------------------------------------------------------------------- 1 | Demo code for basic experiment 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/_config.yml -------------------------------------------------------------------------------- /amibroker/exp_01.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/exp_01.afl -------------------------------------------------------------------------------- /amibroker/exp_02.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/exp_02.afl -------------------------------------------------------------------------------- /amibroker/exp_03.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/exp_03.afl -------------------------------------------------------------------------------- /amibroker/exp_04.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/exp_04.afl -------------------------------------------------------------------------------- /amibroker/exp_05.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/exp_05.afl -------------------------------------------------------------------------------- /amibroker/exp_06.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/exp_06.afl -------------------------------------------------------------------------------- /amibroker/myindicator_1.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/myindicator_1.afl -------------------------------------------------------------------------------- /amibroker/myindicator_2.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/myindicator_2.afl -------------------------------------------------------------------------------- /amibroker/myindicator_3.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/myindicator_3.afl -------------------------------------------------------------------------------- /amibroker/myindicator_4.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/myindicator_4.afl -------------------------------------------------------------------------------- /amibroker/myindicator_5.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/myindicator_5.afl -------------------------------------------------------------------------------- /amibroker/myindicator_6.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/myindicator_6.afl -------------------------------------------------------------------------------- /amibroker/myindicator_7.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/amibroker/myindicator_7.afl -------------------------------------------------------------------------------- /amibroker/readme.txt: -------------------------------------------------------------------------------- 1 | amibroker AFL code 2 | -------------------------------------------------------------------------------- /quant/start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chaipat-ncm/learn2trade/HEAD/quant/start.txt --------------------------------------------------------------------------------