Subscribe here RTS5Pattern

About Remind.cz

Remind.cz is the official download center for advanced trading tools designed for MetaTrader 4 and 5 platforms. The site offers professional indicators like RTS5Pattern-Profi, which performs statistical analysis of price patterns, and RFNN PRO, a neural network-based tool for forecasting market movements. Each tool comes with a detailed description, usage guide, and technical specifications. Demo versions are available for free until their expiration date.

The website also features trading-related articles, philosophical reflections, and live demonstrations of neural networks analyzing real-time market data.

RTS5Pattern profi BTC
RTS5Pattern profi BTC

RTS5Pattern-profi

Version: 9.60
Platform: MetaTrader 5
Website: remind.cz
Demo valid until: May 30, 2025

Description:
RTS5Pattern-profi is an interactive pattern recognition indicator for price action traders. Users select the start and end candle of any custom pattern, and the indicator searches historical data for similar structures. Based on pattern similarity, it projects three prediction paths and highlights statistically likely outcomes.

Key Input Parameters:

Number of candles to forecast (default: 20).

Include volume data in pattern matching (default: false).

Maximum allowed deviation for pattern similarity (default: 0.35).

Risk-Reward Ratio for TP/SL calculation (default: 2).

Toggle prediction display on chart.

Show support/resistance zones.

  • IB – Highlight inside bars visually.

Best for:
Discretionary traders using price action strategies who value historical pattern recognition and context-based forecasting. Ideal for manual decision-making with visual confirmation.


RTS5Pattern-Profi v.9.55 BTC
RTS5Pattern-Profi v.9.55 BTC

 

Trading System with RTS5Pattern-profi Indicator (version 9.55) for BTC

Introduction

This manual describes a price action trading system based on the RTS5Pattern-profi indicator. The system is optimized for trading the BTCUSD instrument and uses historical pattern recognition, predictive curves, support/resistance zones, and inside bars.

System Principle

The user manually selects the start and end candles of a pattern. The indicator then finds historically similar situations and generates predictions (Predict, Predict1, Predict2). An aggregated prediction (AStat) is calculated from these. If the prediction matches current market context (S/R zones, inside bar), the indicator suggests a trade entry with calculated TP and SL levels.

Trade Entry Conditions

BUY Entry

  • AStat curve rises after the pattern.
  • TP is located above the nearest S/R zone.
  • A bullish inside bar is detected within the zone.
  • The indicator displays a green label „BUY at:“.

SELL Entry

  • AStat curve falls after the pattern.
  • TP is located below the nearest S/R zone.
  • A bearish inside bar is detected within the zone.
  • The indicator displays a red label „SELL at:“.

Trade Exit

The trade is closed upon reaching TP or SL. These values are automatically calculated based on historical behavior of the closest patterns.

Indicator Settings

  • PredictionLen: 20
  • MSQErr: 0.35
  • VolumeCalculate: false
  • Plot: true
  • SR: true
  • IB: true

Entry Filtering

  • Only trade if the weekday has statistically at least 5 pattern occurrences.
  • Avoid patterns too close to the last trade.

Recommended Timeframe

M30 to D1 for entries. For analyzing support/resistance zones, additionally use H4.

Conclusion

RTS5Pattern-profi offers an efficient way to utilize historical similarity for predicting future price action. Combined with S/R zones, inside bars, and proper trade management, it can serve as part of a robust BTC trading system.


RTS5Pattern-profi 7.40
RTS5Pattern-profi 7.40

RTS5Pattern Profi – Advanced Pattern Analysis Indicator for MetaTrader 5

RTS5Pattern is a professional tool for MetaTrader 5 that utilizes statistical matching of historical price formations. With just two clicks – on the first and last candle of your chosen pattern – the indicator automatically scans historical data to find the most similar situations and generates predictions based on their outcomes.

This approach empowers traders to make decisions based on recurring price behavior rather than relying on speculative models or fixed templates. RTSPattern is ideal for price action traders who want to combine visual market analysis with statistically grounded forecasts.

The tool includes predictive visualization, a model of the most statistically favorable outcome, and navigation buttons that allow users to step through detected historical patterns. The indicator is available as a demo version valid until May 30, 2025.


RFNN PRO
RFNN PRO

This indicator, RFNN (Remind Fast Neural Network), is based on a neural network architecture, specifically using a Back Propagation Neural Network (BPN). Below is an updated guide on how to use it, based on the provided code.

1. Basic Setup

  • Neural Network Inputs: The neural network uses data such as Open, High, Low, Close, along with additional features like DayOfWeek, TimeHour, TimeMinute, and Volume.
  • Neural Network Output: The output is computed as the average of the Open, High, Low, and Close values: Output=Open+High+Low+Close4text{Output} = frac{text{Open} + text{High} + text{Low} + text{Close}}{4}
  • Directory Setup: For full functionality, the directory C:ANN must be created.

2. Training the Neural Network

  • Training Period: The number of bars (candlesticks) used for training is set by BarsTrain (default is 5000).
  • Neural Network Layers:
    • The network has two hidden layers with nn_hidden1 and nn_hidden2 neurons, respectively.
    • The total number of input neurons is calculated based on the Inputs parameter, which defines how many bars are used as inputs.
  • Starting Training: Pressing the „RUN TRAINING“ button will start the training process. The button’s text changes to „LEARNING IN PROGRESS“ during active training. The network is trained iteratively using past market data to predict future price movements.

3. Future Predictions

  • Prediction Period: The network predicts future prices based on past data, and the FuturePredictionShift parameter (default 3) defines how many bars ahead the predictions will be made.
  • Prediction Activation: The „BUTON-PREDICT“ button triggers the prediction process, and the predicted values are plotted on the chart.

4. Data Normalization and Denormalization

  • Normalization: The input data (Open, High, Low, Close, etc.) is normalized using maximum and minimum values to scale them into the range between 0 and 1, ensuring stable and consistent neural network performance.
  • Denormalization: After the network computes the outputs, the predicted values are denormalized to revert them back to the original price scale.

5. Chart Display and Visual Elements

  • Several visual elements are plotted on the chart to assist with analyzing the network’s output:
    • NNOutput: Shows the network’s computed output.
    • PredictedBuff: Displays the predicted future prices.
    • DesiredBuff: Represents the target values used during training.
    • NNTrainLineOut: Displays the network’s output during training.
  • These elements are represented as arrows or lines, providing visual feedback on the network’s predictions and performance.

6. Saving and Loading Neural Networks

  • Saving: The trained neural network can be saved periodically after a set number of iterations.
  • Loading: If the Load option is enabled, the last saved network will be loaded from the designated path (C:ANN) upon initialization, allowing for a continuation of the training process without starting from scratch.

7. Indicator Initialization and Timers

  • During initialization (init()), the indicator sets up the network parameters, prepares the chart elements (such as buttons and prediction output), and checks the current date for any expiration (in this case, the demo expires on 2024-12-12).
  • The training and prediction processes are managed via a timer (OnTimer()), which handles the network’s training loop and ensures that the chart is updated regularly.

8. Manual Adjustments via Chart Events

  • Manual Navigation: You can adjust the bar from which the training or prediction starts using the „TI+“ and „TI-“ buttons.
  • Training and Prediction Execution: Pressing „BUTON“ starts or stops the training process, while pressing „BUTON-PREDICT“ recalculates the predictions based on the current network.

9. Parallel Processing and Threading

  • The indicator supports parallel processing, allowing faster training on multi-threaded systems. This can be useful when dealing with large datasets or when faster computation is required.

10. Practical Notes

  • Training Parameters: The neural network’s behavior can be further fine-tuned by adjusting various parameters such as the number of hidden neurons, input layers, or even the activation functions used within the network.
  • Visualization: The chart offers immediate feedback on the performance of the network’s predictions, showing both the actual and predicted future prices.

Conclusion:

This indicator provides a sophisticated tool for predicting future price movements using neural networks. Proper setup, training, and tuning of the network can lead to more accurate market predictions, making it a potentially valuable asset for traders.


RTSPattern AR MT4


Chráněno: RTSPattern AR -unlimited full version !

Chráněno: RFNN Neural net
Chráněno: RFNN Neural net
Chráněno: RFNN Neural net
Chráněno: RFNN Neural net