File size: 16,566 Bytes
8e56885 aa1e73c 1c5e919 aa1e73c 8e56885 aa1e73c 8e56885 044bd03 1c5e919 044bd03 1c5e919 044bd03 1c5e919 044bd03 1c5e919 044bd03 8e56885 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 044bd03 aa1e73c 044bd03 aa1e73c 1c5e919 aa1e73c 044bd03 aa1e73c 044bd03 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 aa1e73c 8e56885 aa1e73c 8e56885 aa1e73c 1c5e919 aa1e73c 8e56885 1c5e919 aa1e73c 1c5e919 aa1e73c 1c5e919 8e56885 aa1e73c 8e56885 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
import requests
import json
import time
import re
import logging
from datetime import datetime, timedelta
from flask import Flask, jsonify
from apscheduler.schedulers.background import BackgroundScheduler
from apscheduler.triggers.cron import CronTrigger
from db.signals import fetch_json_from_github, update_user_json_file, fetch_authenticity_token_and_commit_oid
from ai import analyze_forex_pairs # Import the updated analyze_forex_pairs function
# Configure logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s'
)
logger = logging.getLogger(__name__)
# Initialize Flask app
app = Flask(__name__)
# Message API configuration
MESSAGE_API_URL = "https://aoamrnuwara.pythonanywhere.com/api/send-message"
MESSAGE_API_KEY = "Seakp0683asppoit"
def send_message_to_api(message):
"""Send a message via the message forwarding API."""
headers = {
"Content-Type": "application/json",
"X-API-Key": MESSAGE_API_KEY
}
payload = {
"message": message
}
try:
response = requests.post(MESSAGE_API_URL, headers=headers, data=json.dumps(payload))
response.raise_for_status()
logger.info(f"Message sent to API successfully. Status Code: {response.status_code}")
return {"success": True, "response": response.json()}
except requests.exceptions.RequestException as e:
logger.error(f"API request error: {e}")
return {"success": False, "error": str(e)}
except Exception as e:
logger.error(f"Unexpected error sending message to API: {e}")
return {"success": False, "error": str(e)}
def send_to_api(pair_name, message):
"""Send the message to the external API."""
url = "https://forextrade-app.hf.space/api/message" # Replace with your actual API URL
data = {
"pair_name": pair_name,
"message": message
}
headers = {
"Content-Type": "application/json"
}
try:
response = requests.post(url, json=data, headers=headers, timeout=30)
response.raise_for_status()
return {"success": True, "response": response.json()}
except requests.exceptions.RequestException as e:
logger.error(f"API request error: {e}")
return {"success": False, "error": str(e)}
except Exception as e:
logger.error(f"Unexpected error sending to API: {e}")
return {"success": False, "error": str(e)}
def extract_message_content(analysis_text, pair_name):
"""Extract message, reason, prediction, and advice from the analysis text."""
try:
# Check for regular message
message_match = re.search(r'<send_message>\s*<message>(.*?)</message>\s*<reason>(.*?)</reason>\s*<Prediction>(.*?)</Prediction>\s*<Advice>(.*?)</Advice>\s*</send_message>',
analysis_text, re.DOTALL)
if message_match:
message = message_match.group(1).strip()
reason = message_match.group(2).strip()
prediction = message_match.group(3).strip()
advice = message_match.group(4).strip()
return {
"type": "regular",
"message": message,
"reason": reason,
"prediction": prediction,
"advice": advice,
"full_message": f"🔹 {pair_name} 🔹\n\n💬 الرسالة: {message}\n\n📝 النصيحة: {advice}"
}
# Check for close deal message
close_match = re.search(r'<close_deal>(.*?)</close_deal>', analysis_text, re.DOTALL)
if close_match:
close_reason = close_match.group(1).strip()
return {
"type": "close",
"reason": close_reason,
"full_message": f"🔴 إغلاق صفقة 🔴\n\n🔹 {pair_name} 🔹\n\n⛔️ تم إغلاق الصفقة\n\n🧠 السبب: {close_reason}"
}
return None
except Exception as e:
logger.error(f"Error extracting message content: {e}")
return None
def extract_all_messages(analysis_text):
"""Extract all messages for different pairs from the analysis text."""
try:
# First check if there are any pair-specific sections
pair_sections = re.findall(r'🔹 ([A-Z]+) 🔹(.*?)(?=🔹 [A-Z]+ 🔹|$)', analysis_text, re.DOTALL)
if pair_sections:
results = {}
for pair, content in pair_sections:
# Check for regular message
message_match = re.search(r'💬 الرسالة: (.*?)(?=🧠 السبب:|$)', content, re.DOTALL)
reason_match = re.search(r'🧠 السبب: (.*?)(?=🔮 التوقع:|$)', content, re.DOTALL)
prediction_match = re.search(r'🔮 التوقع: (.*?)(?=📝 النصيحة:|$)', content, re.DOTALL)
advice_match = re.search(r'📝 النصيحة: (.*?)$', content, re.DOTALL)
close_match = re.search(r'⛔️ تم إغلاق الصفقة\s*🧠 السبب: (.*?)$', content, re.DOTALL)
if message_match and reason_match and prediction_match and advice_match:
message = message_match.group(1).strip()
reason = reason_match.group(1).strip()
prediction = prediction_match.group(1).strip()
advice = advice_match.group(1).strip()
results[pair] = {
"type": "regular",
"message": message,
"reason": reason,
"prediction": prediction,
"advice": advice,
"full_message": f"🔹 {pair} 🔹\n\n💬 الرسالة: {message}\n\n📝 النصيحة: {advice}"
}
elif close_match:
close_reason = close_match.group(1).strip()
results[pair] = {
"type": "close",
"reason": close_reason,
"full_message": f"🔴 إغلاق صفقة 🔴\n\n🔹 {pair} 🔹\n\n⛔️ تم إغلاق الصفقة\n\n🧠 السبب: {close_reason}"
}
return results
else:
# Fall back to the old extraction method if no pair-specific sections are found
return None
except Exception as e:
logger.error(f"Error extracting all messages: {e}")
return None
def format_deal_details(signal):
"""Format the signal details for the AI analysis."""
details = f"زوج: {signal.get('pair')}, "
details += f"نوع: {signal.get('type')}, "
details += f"سعر الدخول: {signal.get('entry')}, "
details += f"وقف الخسارة: {signal.get('stop_loss')}, "
details += f"هدف الربح: {signal.get('take_profit')}, "
details += f"المدة: {signal.get('duration')}, "
details += f"السبب: {signal.get('reason')}"
return details
def check_and_process_signals():
"""Check for signals and process them."""
current_time = datetime.now()
logger.info(f"Processing signals at candle close: {current_time.strftime('%Y-%m-%d %H:%M:%S')}")
try:
# Fetch the signals from GitHub
result = fetch_json_from_github()
if not result["success"]:
logger.error(f"Error fetching signals: {result['message']}")
return
signals = result["data"]
updated = False
signals_to_remove = []
for i, signal in enumerate(signals):
# Check if the signal is in "starting" status
if signal.get("status") == "starting":
pairs = signal.get("pairs", [signal.get("pair")])
main_pair = signal.get("pair")
logger.info(f"Processing signal for main pair {main_pair} with group: {pairs}")
try:
# Format the deal details for AI
deal_details = format_deal_details(signal)
# Analyze the forex pairs using the updated function
analysis = analyze_forex_pairs(pairs, deal_details)
# First try to extract all messages
all_messages = extract_all_messages(analysis)
if all_messages:
# Process each pair's message
close_signal = False
for pair, message_data in all_messages.items():
# Send to messaging API instead of directly to Telegram
api_msg_result = send_message_to_api(message_data["full_message"])
if api_msg_result["success"]:
logger.info(f"Message sent via API for {pair}")
else:
logger.error(f"Failed to send message via API: {api_msg_result.get('error')}")
# Handle based on message type
if message_data["type"] == "regular":
# Send to API
api_result = send_to_api(pair, message_data["message"])
if api_result["success"]:
logger.info(f"API message sent for {pair}")
else:
logger.error(f"Failed to send to API: {api_result['error']}")
elif message_data["type"] == "close" and pair == main_pair:
# Only mark for removal if the main pair has a close signal
close_signal = True
if close_signal:
signals_to_remove.append(i)
updated = True
logger.info(f"Signal for {main_pair} marked for removal due to close deal")
else:
# Fall back to old extraction method for backward compatibility
if "<send_message>" in analysis or "<close_deal>" in analysis:
message_data = extract_message_content(analysis, main_pair)
if message_data:
# Send to messaging API instead of directly to Telegram
api_msg_result = send_message_to_api(message_data["full_message"])
if api_msg_result["success"]:
logger.info(f"Message sent via API for {main_pair}")
else:
logger.error(f"Failed to send message via API: {api_msg_result.get('error')}")
# Handle based on message type
if message_data["type"] == "regular":
# Send to API
api_result = send_to_api(main_pair, message_data["message"])
if api_result["success"]:
logger.info(f"API message sent for {main_pair}")
else:
logger.error(f"Failed to send to API: {api_result['error']}")
elif message_data["type"] == "close":
# Mark the signal for removal
signals_to_remove.append(i)
updated = True
logger.info(f"Signal for {main_pair} marked for removal due to close deal")
else:
logger.warning(f"Could not extract message content for {main_pair}")
else:
logger.info(f"No message to send for {main_pair}")
except Exception as e:
logger.error(f"Error processing signal for {main_pair}: {e}", exc_info=True)
# Continue with other signals instead of breaking
# Remove signals marked for deletion (in reverse order to avoid index issues)
for index in sorted(signals_to_remove, reverse=True):
signals.pop(index)
# If any signals were updated, update the GitHub file
if updated:
try:
# Convert the updated signals to JSON
updated_content = json.dumps(signals, separators=(',', ':'))
# Fetch the authenticity token and commit OID
authenticity_token, commit_oid = fetch_authenticity_token_and_commit_oid()
if authenticity_token and commit_oid:
# Update the GitHub file
update_result = update_user_json_file(authenticity_token, commit_oid, updated_content)
if update_result["success"]:
logger.info("GitHub signals file updated successfully")
else:
logger.error(f"Failed to update GitHub file: {update_result['message']}")
else:
logger.error("Failed to get authenticity token and commit OID")
except Exception as e:
logger.error(f"Error updating GitHub file: {e}", exc_info=True)
else:
logger.info("No signals needed updating")
except Exception as e:
logger.error(f"Unexpected error in check_and_process_signals: {e}", exc_info=True)
# Flask routes
@app.route('/')
def health_check():
"""Health check endpoint to verify the service is running"""
return jsonify({
"status": "running",
"message": "Forex Signal Processing System is active",
"time": datetime.now().strftime("%Y-%m-%d %H:%M:%S")
})
@app.route('/process/now')
def trigger_processing():
"""Endpoint to manually trigger signal processing"""
try:
check_and_process_signals()
return jsonify({
"status": "success",
"message": "Signal processing triggered successfully",
"time": datetime.now().strftime("%Y-%m-%d %H:%M:%S")
})
except Exception as e:
logger.error(f"Error triggering signal processing: {e}", exc_info=True)
return jsonify({
"status": "error",
"message": f"Error triggering signal processing: {str(e)}"
}), 500
# Initialize scheduler
scheduler = BackgroundScheduler(daemon=True)
def add_candle_close_jobs():
"""Add jobs to run at 5-minute candle closes"""
logger.info("Setting up scheduler jobs for candle closes")
# Schedule jobs to run at each 5-minute mark (00:00, 00:05, 00:10, etc.)
scheduler.add_job(
check_and_process_signals,
CronTrigger(minute='0,5,10,15,20,25,30,35,40,45,50,55'),
id='candle_close_processing',
replace_existing=True,
)
# Calculate time to next candle close
now = datetime.now()
# Get the minutes and find the next 5-minute mark
current_minute = now.minute
next_5min = ((current_minute // 5) + 1) * 5
if next_5min >= 60:
next_5min = 0
next_run = now.replace(minute=next_5min, second=5, microsecond=0) # 5 seconds after the minute mark
if next_run <= now:
next_run = next_run + timedelta(hours=1)
time_to_next = (next_run - now).total_seconds()
logger.info(f"Next candle close processing scheduled for: {next_run.strftime('%Y-%m-%d %H:%M:%S')} "
f"(in {time_to_next:.2f} seconds)")
# Also add a one-time job that runs at the start
scheduler.add_job(
check_and_process_signals,
'date',
run_date=datetime.now() + timedelta(seconds=10), # Run 10 seconds after startup
id='initial_check',
replace_existing=True
)
def start_scheduler():
"""Start the scheduler with the candle close processing jobs"""
logger.info("Starting scheduler for candle close signal processing")
# Add the candle close jobs
add_candle_close_jobs()
# Start the scheduler if it's not already running
if not scheduler.running:
scheduler.start()
logger.info("Scheduler started successfully")
if __name__ == "__main__":
logger.info("Starting Forex Signal Processing System...")
# Start the scheduler
start_scheduler()
# Start the Flask application
app.run(host='0.0.0.0', port=7860, debug=False) |