Python Forum
MetaTrader 5 and Python problems with RSI and Alligator chart integration
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
MetaTrader 5 and Python problems with RSI and Alligator chart integration
#1
How can I implement RSI and Alligator on the same chart?

I am developing a robot in Python to automate trading operations. I saw that RSI works in a range from 0 to 100 while Alligator works around the maximum and minimum value of the candles.

However, I saw that in MetaTrader 5 on the cell phone it is possible to integrate the 2 indicators on the same chart.

Do you know what is the logic to follow in this case?

I tried to normalize the Alligator values in a range from 0 to 100 but it is very inaccurate, what would be the correct way to do it?

def normalize_series(series, target_min=0, target_max=100):
    min_val = series.min()
    max_val = series.max()
    normalized = (series - min_val) / (max_val - min_val) * (target_max - target_min) + target_min
    return normalized
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Radar (spider) chart in python - 360 evaluation quiz jedan_decko 0 772 Nov-26-2024, 09:52 PM
Last Post: jedan_decko
  Active Directory integration dady 2 1,141 Oct-13-2023, 04:02 AM
Last Post: deanhystad
  Help with Integration Pandas excel - Python Gegemendes 5 2,894 Jun-05-2022, 09:46 PM
Last Post: Gegemendes
Question Debian 11 Bullseye | Python 3.9.x | pip install mysql-connector-python-rf problems BrandonKastning 4 8,529 Feb-05-2022, 08:25 PM
Last Post: BrandonKastning
  Python Matplotlib: Create chart for every 4 columns in Excel file JaneTan 2 3,494 Feb-28-2021, 05:02 AM
Last Post: JaneTan
Photo Integration of apache spark and Kafka on eclipse pyspark aupres 1 5,019 Feb-27-2021, 08:38 AM
Last Post: Serafim
Question I can't get my real-time chart with Python (Help!) Bastian_ElProfe 1 2,835 Jan-20-2021, 01:34 PM
Last Post: wostan
  Tableau Time Series Prediction using Python Integration tobimarsh43 0 2,367 Jul-24-2020, 10:38 AM
Last Post: tobimarsh43
  R-PYTHON INTEGRATION RELATED PROBLEM arnab93 0 1,823 Jun-05-2020, 02:07 PM
Last Post: arnab93
  STATA/Python Integration jprender 0 2,279 May-03-2020, 09:38 PM
Last Post: jprender

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020