
Hasan0423
@t_Hasan0423
What symbols does the trader recommend buying?
Purchase History
پیام های تریدر
Filter
Signal Type

Hasan0423

I hope the price of gold will go down according to the specified chart. Decide with your own knowledge, no one is perfect

Hasan0423

The specified range is very suitable for purchase. Buy with confidence

Hasan0423

import pandas as pdimport numpy as npimport talibdata = pd.DataFrame({ 'close': [100, 105, 110, 115, 120, 115, 110, 105, 100, 95], 'high': [105, 110, 115, 120, 125, 120, 115, 110, 105, 100], 'low': [95, 100, 105, 110, 115, 110, 105, 100, 95, 90]})rsi_period = 14macd_fast_period = 12macd_slow_period = 26macd_signal_period = 9rsi = talib.RSI(data['close'], timeperiod=rsi_period)macd, signal, _ = talib.MACD(data['close'], fastperiod=macd_fast_period, slowperiod=macd_slow_period, signalperiod=macd_signal_period)def combine_signals(rsi, macd): signals = [] for i in range(len(rsi)): if rsi > 70 and macd > 0: signals.append('Sell') elif rsi < 30 and macd < 0: signals.append('Buy') else: signals.append('Hold') return signalscombined_signals = combine_signals(rsi, macd)data['RSI'] = rsidata['MACD'] = macddata['Combined_Signal'] = combined_signalsprint(data)
Disclaimer
Any content and materials included in Sahmeto's website and official communication channels are a compilation of personal opinions and analyses and are not binding. They do not constitute any recommendation for buying, selling, entering or exiting the stock market and cryptocurrency market. Also, all news and analyses included in the website and channels are merely republished information from official and unofficial domestic and foreign sources, and it is obvious that users of the said content are responsible for following up and ensuring the authenticity and accuracy of the materials. Therefore, while disclaiming responsibility, it is declared that the responsibility for any decision-making, action, and potential profit and loss in the capital market and cryptocurrency market lies with the trader.