Техническое задание
mport pandas as pd
import numpy as np
def detecter_tendance(data):
# Code pour détecter la tendance
pass
def identifier_niveaux(data):
# Code pour identifier les niveaux de support et de résistance
pass
def calculer_stop_loss(tendance, support, resistance):
# Code pour calculer les stop loss
pass
def calculer_profils(tendance, support, resistance):
# Code pour calculer les profils mport pandas as pd
import numpy as np
def detecter_tendance(data):
# Code pour détecter la tendance
pass
def identifier_niveaux(data):
# Code pour identifier les niveaux de support et de résistance
pass
def calculer_stop_loss(tendance, support, resistance):
# Code pour calculer les stop loss
pass
def calculer_profils(tendance, support, resistance):
# Code pour calculer les profils import pandas as pd
import numpy as np
def detecter_tendance(data):
# Code pour détecter la tendance
pass
def identifier_niveaux(data):
# Code pour identifier les niveaux de support et de résistance
pass
def calculer_stop_loss(tendance, support, resistance):
# Code pour calculer les stop loss
pass
def calculer_profils(tendance, support, resistance):
# Code pour calculer les profils from flask import Flask, render_template, request
from .models import detecter_tendance, identifier_niveaux, calculer_stop_loss, calculer_profils
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def index():
if request.method == 'POST':
data = request.files['data']
data = pd.read_csv(data)
tendance = detecter_tendance(data)
support, resistance = identifier_niveaux(data)
stop_loss = calculer_stop_loss(tendance, support, resistance)
profils = calculer_profils(tendance, support, resistance)
return render_template('index.html', tendance=tendance, support=support, resistance=resistance, stop_loss=stop_loss, profils=profils)
return render_template('index.html
pass
Откликнулись
1
Оценка
Проекты
346
29%
Арбитраж
36
28%
/
64%
Просрочено
10
3%
Работает
2
Оценка
Проекты
556
41%
Арбитраж
30
57%
/
3%
Просрочено
57
10%
Свободен
Опубликовал: 11 примеров
3
Оценка
Проекты
20
40%
Арбитраж
3
0%
/
67%
Просрочено
3
15%
Свободен
4
Оценка
Проекты
111
50%
Арбитраж
26
31%
/
50%
Просрочено
9
8%
Свободен
5
Оценка
Проекты
33
42%
Арбитраж
0
Просрочено
3
9%
Свободен
6
Оценка
Проекты
0
0%
Арбитраж
0
Просрочено
0
Свободен
7
Оценка
Проекты
2
0%
Арбитраж
1
0%
/
0%
Просрочено
0
Свободен
8
Оценка
Проекты
11
27%
Арбитраж
1
0%
/
0%
Просрочено
5
45%
Свободен
9
Оценка
Проекты
27
7%
Арбитраж
9
33%
/
33%
Просрочено
1
4%
Работает
10
Оценка
Проекты
2
0%
Арбитраж
0
Просрочено
0
Свободен
Опубликовал: 1 пример
Похожие заказы
i need someone that can make me an EA really easy with the martingala system?, I am looking for something that doesn't exceed 5 trades for the martingale, I think I did it, but it only works for propfirms, So i need to develop it on ninja trader I have identified a very very simple strategy but it only works on propfirms, with only two propfirm accounts, i absolutely need account A and account, And they have to open
Hi, do you have a proven EA for MT5, suitable for live accounts and prop firms, including the Brazilian market? I’m looking for ready, tested EAs. Can you send a backtest or demo? Please if you do have and can send me nacktest or demo you should Message me
Access and confidentiality restrictions: You will receive only a separately named copy of the Commander . Existing trading EAs, presets, account credentials, Telegram credentials and proprietary entry/exit code will not be shared. The Commander intelligence must be developed using: Defined signal/input interfaces Anonymized historical logs and replay data Mock EA signals and test harnesses Documented authority and
We are looking for an expert algorithmic trading developer to build a high-performance, fully automated Custom Expert Advisor (EA) or trading bot. The bot must integrate advanced Smart Money Concepts (SMC) , Inner Circle Trader (ICT) methodologies, and Volume Spread Analysis (VSA) with a high-frequency trading (HFT) style execution and scaling model. The core objective is to program a bot that identifies
EA: Smart Break-Even & Partial Close Manager
30 - 200 USD
Develop an Expert Advisor for MetaTrader 5 that manages existing positions. Features Automatically detect all open positions. Apply Break-Even after price reaches a configurable profit. Partial Close: Close X% of volume at the first target. Move Stop Loss to Break-Even. ATR Trailing Stop (optional). Magic Number filter. Comment filter. Symbol filter. Trading session filter. Retry mechanism for trade operations
An expert adviser based on MQL5
30+ USD
Requirements Specification Here is an example of Requirements Specification for the development of the MACD Sample Expert Advisor, which is available in the MetaTrader 5 standard package. 1. The idea of the trading system is as follows : market entries are performed when MACD's main and signal lines intersect in the current trend direction . 2. Trend is determined based on the Exponential Moving Average with
JazzDaBot
30+ USD
""" Wick Reversal Strategy — core logic ===================================== Rules (as specified): - Timeframe: 15-minute candles - Entry: candle wick >= WICK_MULTIPLIER x body -> signal candle - long lower wick -> enter LONG at next candle's open - long upper wick -> enter SHORT at next candle's open - Exit: an opposite-direction wick candle forms while in a position - Stop-loss: just beyond the signal candle's
Ninjatrader 8 bot development
30+ USD
Hello, I want a simple bot for NinjaTrader8. I need a bot that operates automatically on Nasdaq (NQ/MNQ). Requirements: open buys and sells following a simple trend strategy, configurable stop loss and take profit, risk per trade of 1 to 2% of capital, if it loses 3% in a day, stop trading until the next day. Compatible with backtesting, delivery of the source code and the working bot in NinjaTrader 8. My initial
I'm looking for a skilled Python developer to help expand and improve an existing Python game. The project is already functional, and I need someone who can add new features, improve gameplay mechanics, optimize performance, and maintain clean, well-structured code. Experience with game development in Python is preferred
EA based on 5 mintues timeframe candles
100 - 250 USD
{ "strategy_name": "M5 EMA Scalper", "timeframe": "M5", "indicators": { "ema_fast": 20, "ema_slow": 50, "rsi": 14, "atr": 14 }, "entry_rules": { "buy": [ "EMA20 > EMA50", "Price closes above EMA20", "RSI > 55" ], "sell": [ "EMA20 < EMA50", "Price closes below EMA20", "RSI < 45" ] }, "risk_management": { "risk_per_trade": 1.0, "stop_loss_atr": 1.5, "take_profit_rr": 2.0
Информация о проекте
Бюджет
30 - 200 USD
Сроки выполнения
от 1 до 10 дн.