├── .gitattributes ├── .gitignore ├── Experts ├── LadinoBot.mq5 └── LadinoBotTest.mq5 ├── Include └── LadinoBot │ ├── LadinoBase.mqh │ ├── LadinoBot.mqh │ ├── LadinoCore.mqh │ ├── Languages │ ├── en.mqh │ └── ptBR.mqh │ ├── Strategies │ ├── AutoTrend.mqh │ ├── Candlestick.mqh │ ├── HiLo.mqh │ └── SR.mqh │ ├── Trade │ ├── LTrade.mqh │ ├── TradeIn.mqh │ └── TradeOut.mqh │ ├── Utils.mqh │ └── Views │ ├── LadinoView.mqh │ └── LogPanel.mqh ├── Indicators └── gann_hi_lo_activator_ssl.mq5 ├── LICENSE ├── README.md ├── _config.yml └── www └── img ├── ladinobot(1).png ├── ladinobot.png └── lb.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Experts/LadinoBot.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Experts/LadinoBot.mq5 -------------------------------------------------------------------------------- /Experts/LadinoBotTest.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Experts/LadinoBotTest.mq5 -------------------------------------------------------------------------------- /Include/LadinoBot/LadinoBase.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/LadinoBase.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/LadinoBot.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/LadinoBot.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/LadinoCore.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/LadinoCore.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Languages/en.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Languages/en.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Languages/ptBR.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Languages/ptBR.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Strategies/AutoTrend.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Strategies/AutoTrend.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Strategies/Candlestick.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Strategies/Candlestick.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Strategies/HiLo.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Strategies/HiLo.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Strategies/SR.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Strategies/SR.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Trade/LTrade.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Trade/LTrade.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Trade/TradeIn.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Trade/TradeIn.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Trade/TradeOut.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Trade/TradeOut.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Utils.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Utils.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Views/LadinoView.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Views/LadinoView.mqh -------------------------------------------------------------------------------- /Include/LadinoBot/Views/LogPanel.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Include/LadinoBot/Views/LogPanel.mqh -------------------------------------------------------------------------------- /Indicators/gann_hi_lo_activator_ssl.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/Indicators/gann_hi_lo_activator_ssl.mq5 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/_config.yml -------------------------------------------------------------------------------- /www/img/ladinobot(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/www/img/ladinobot(1).png -------------------------------------------------------------------------------- /www/img/ladinobot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/www/img/ladinobot.png -------------------------------------------------------------------------------- /www/img/lb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landim32/LadinoBot/HEAD/www/img/lb.pdf --------------------------------------------------------------------------------