All Projects → 9nix6 → Median-and-Turbo-Renko-indicator-bundle

9nix6 / Median-and-Turbo-Renko-indicator-bundle

Licence: GPL-3.0 license
MQL5 header file for 'Median and Turbo renko indicator bundle' available for MT5 via MQL5 Market. The file lets you easily create a Renko EA in MT5 using the Median Renko indicator.

Programming Languages

MQL5
34 projects

Projects that are alternatives of or similar to Median-and-Turbo-Renko-indicator-bundle

EA-MQL4
MQL4编程实现外汇自动化交易
Stars: ✭ 69 (+1.47%)
Mutual labels:  forex, ea, mql
mt4-expander
DLL extension for the MetaTrader MQL4 framework
Stars: ✭ 25 (-63.24%)
Mutual labels:  forex, mql
ROandaAPI
R Code API for Forex Trading with OANDA Broker
Stars: ✭ 22 (-67.65%)
Mutual labels:  forex, forex-trading
mt4-mql
MetaTrader MQL4 framework
Stars: ✭ 205 (+201.47%)
Mutual labels:  forex, mql
oanda api
A ruby client for the Oanda REST API.
Stars: ✭ 35 (-48.53%)
Mutual labels:  forex, forex-trading
binaryapi
Binary.com & Deriv.com API for Python
Stars: ✭ 32 (-52.94%)
Mutual labels:  forex, forex-trading
fhub
Python client for Finnhub API
Stars: ✭ 31 (-54.41%)
Mutual labels:  forex, forex-trading
EA31337-classes
📦📈 EA31337 framework (MQL library for writing trading Expert Advisors, indicators and scripts)
Stars: ✭ 103 (+51.47%)
Mutual labels:  forex, mql
Sequence-to-Sequence-Learning-of-Financial-Time-Series-in-Algorithmic-Trading
My bachelor's thesis—analyzing the application of LSTM-based RNNs on financial markets. 🤓
Stars: ✭ 64 (-5.88%)
Mutual labels:  forex, forex-trading
MT5-TradingToolCrypto
All the tradingtools: crypto integration to metatrader including cryptobridgepro, crypto charts, paymentbot, indicators, robots are located here. Just download the zip folder, drag and drop into Metatrader 5 directory
Stars: ✭ 70 (+2.94%)
Mutual labels:  forex, forex-trading
xapi-node
xStation5 Trading API for NodeJS/JS
Stars: ✭ 36 (-47.06%)
Mutual labels:  forex, forex-trading
Metatrader
Expert advisors, scripts, indicators and code libraries for Metatrader.
Stars: ✭ 99 (+45.59%)
Mutual labels:  forex, forex-trading
robinhood.tools
📈🤑💰 Advanced trading tools and resources for Robinhood Web.
Stars: ✭ 27 (-60.29%)
Mutual labels:  forex, forex-trading
Php Forex Quotes
PHP Library for fetching realtime forex quotes.
Stars: ✭ 61 (-10.29%)
Mutual labels:  forex
Ratesapi
Forex conversion exchange rates api for free
Stars: ✭ 144 (+111.76%)
Mutual labels:  forex
Siis
Trading bot including terminal, for crypto and traditionals markets. Assisted or fully automated strategy.
Stars: ✭ 45 (-33.82%)
Mutual labels:  forex
Exchange Rates
💱 Querying a rate-limited currency exchange API using Redis as a cache
Stars: ✭ 37 (-45.59%)
Mutual labels:  forex
Stock.indicators
Stock indicator technical analysis library package for .NET. Send in historical price quotes and get back desired technical indicators. Nothing more. It can be used in any market analysis software using standard OHLCV price quotes for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning, and charting systems in mind when originally creating this community library. Current indicators include: Accumulation/Distribution Line (ADL), Aroon Oscillator, Arnaud Legoux Moving Average (ALMA), Average Directional Index (ADX), Average True Range (ATR), Awesome Oscillator (AO), Balance of Power (BOP), Beta Coefficient, Bollinger Bands®, Chaikin Money Flow (CMF), Chaikin Oscillator, Chandelier Exit, Choppiness Index (CHOP), Commodity Channel Index (CCI), ConnorsRSI, Correlation Coefficient, Donchian Channels, Double Exponential Moving Average (DEMA), Elder-ray Index, Exponential Moving Average (EMA), Force Index, Fractal Chaos Bands (FCB), Gator Oscillator, Heikin-Ashi, Hull Moving Average (HMA), Ichimoku Cloud, Kaufman's Adaptive Moving Average (KAMA), KDJ Index, Keltner Channels, Momentum Oscillator, Money Flow Index (MFI), MESA Adaptive Moving Averages (MAMA), Moving Average Convergence/Divergence (MACD), Moving Average Envelopes, On-balance Volume (OBV), Parabolic SAR (stop and reverse), Percentage Volume Oscillator (PVO), Pivot Points and Rolling Pivot Points, Price Channels, Price (Comparative) Relative Strength (PRS), Price Momentum Oscillator (PMO), Rate of Change (ROC), Relative Strength Index (RSI), R-Squared (Coefficient of Determination), Simple Moving Average (SMA), Slope and Linear Regression, Smoothed Moving Average (SMMA), Standard Deviation, Stoller Average Range Channel (STARC) Bands, Stochastic Oscillator, Stochastic RSI, SuperTrend, Tillson T3 Moving Average, Triple Exponential Moving Average (TEMA), Triple EMA Oscillator (TRIX), True Strength Index (TSI), Ulcer Index, Ultimate Oscillator, Volume Simple Moving Average, Volume Weighted Average Price (VWAP), Vortex Indicator (VI), Weighted Moving Average (WMA), Williams %R, Williams Alligator, Williams Fractal, and Zig Zag.
Stars: ✭ 157 (+130.88%)
Mutual labels:  forex
Iextrading4j
IEX Cloud open source API wrapper
Stars: ✭ 112 (+64.71%)
Mutual labels:  forex
Td Ameritrade Client
TD Ameritrade Java Client
Stars: ✭ 35 (-48.53%)
Mutual labels:  forex

MedianRenko.mqh

MQL5 header file for the "Median and Turbo Renko indicator bundle" available for MT5 via MQL5 Market. The class library file simplifies the MedianRenko indicator usage when creating a Renko EA for MT5. The created EA will automatically acquire the settings used on the Renko chart. It is not required to clone the settings from the indicator to the EA.

The files

MedianRenko.mqh - The header file for including in the EA code. It contains the definition and implementation of the MedianRenko class

CommonSettings.mqh & RenkoSettings.mqh - These header files are used by the MedianRenko class to automatically read the EA settings used on the Renko chart where the EA should be attached.

MedianRenkoIndicator.mqh - This helper header file includes a MedianRenkoIndicator class which is used to patch MQL5 indicators to work directly on the Renko charts and use the Renko OLHC values for calculation.

EA compiler

ExampleEA.mq5 - An example EA skeleton showing the use of methods included in the MedianRenko class library

ExampleEA2.mq5 - An example EA utilizing the Super Trend indicator on Renko to make trading decisions also showing the use of methods included in the MedianRenko class library

ExampleEA3.mq5 - An example showing the use of additional indicators (included in the Indicators/MedianRenko folder) in your EA. MedianRenko_RSI indicator is used in the example (RSI values are outputted to log).

2MA_Cross.mq5 - A fully functioning EA that places trades based on a 2 MA cross signal. Fixed stop loss and take profit levels can be set as well as valid trading hours.

PriceMA_Cross.mq5 - A fully functional EA that places trades on price & MA cross signals. Both a fixed stop loss and take profit levels can be set as well as valid trading hours.

Renko_EA - Robust EA for automated trading on renko charts. The EA uses the most commonly used renko trading signals. The settings enable very flexible entry & exit signals as well as an optional trailing stop.

Installation

All folders with header files & EA should be placed in the MQL5 sub-folder of your Metatrader's Data Folder. This short video will walk you through the installation process:

Installing the renko SDK

Backtesting your EAs

Backtesting an EA on Renko

Modification of standard MT5 indicators for compatibility with the renko indicator

Indicator mods

Resources

The robust Renko indicator already bundled with the EAs and additional indicators can be downloaded from https://www.az-invest.eu/ultimate-renko-indicator-generator-for-metatrader-5

A version for MT4 is available from https://www.az-invest.eu/median-renko-plug-in-for-metatrader-4

Disclaimer:

All of the EAs and indicators presented in this repository are solely for educational and informational purposes and should not be regarded as advice or an invitation to trade. Application of the techniques, ideas, and suggestions presented in the videos and files of this repository is done at the user’s sole discretion and risk.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].