MQL5 및 MQL4에서 트레이딩 애플리케이션 개발

거래 로봇 및 기술 지표 주문을 위한 최대 규모의 프리랜서 서비스 - 수백 명의 전문 개발자가 귀하의 거래 전략을 구현할 준비가 되어 있습니다. 최고의 MetaTrader 전문가를 고용하고 여러분의 필요에 맞는 맞춤형 솔루션을 만들어 보세요.

카테고리

인기있는 기술

전체 Forex Trading robot/indicator debugging Strategy optimization Statistics and mathematics C++ Strategy modules
575 모든 언어의 새 작업
분류:
500+ USD
I am looking for a real and experienced developer to work on this project I will share more details afterwards. But in short We will use multiple timeframes from W1 to 15 minutes for execution which will be done with limit orders, there will be use of fibs and other tools. Developer will hand over source code and well written comments
23 애플리케이션
MQL5 전문가
30 - 200 USD
Hello, as described, I want to decorate my EAs with beautiful Scan animations I need the MQ4 source code so I can add all the EAs as shown above or similar Please see the image below https://drive.google.com/file/d/1ErNXgck1aOSrsHZGrYVMA6oKUtluKx9S/view?usp=sharing
4 애플리케이션
(30) MQL5 전문가 설계
30+ USD
I have a multi timeframe fractal indicator that I would like to turn into multi pair EA robot using the breakout of the fractal. Few features include Daily profit target settings in $, percentage loss and lot since calculate
8 애플리케이션
(2) MQL5 전문가
30 - 50 USD
Hello, I bought an EA who has SL but it is not trailing.I need someone who can attach trailing SL to this EA or if it is possible to implement trailing in the EA? I do not have EA code, I bought it and I am using it
19 애플리케이션
(2) MQL4 지표 전문가 Forex
30 - 50 USD
"Hello, I am seeking a skilled and experienced trader to professionally manage my MT4 account. If you specialize in profitable strategies and account growth, please reach out to discuss potential collaboration."
4 애플리케이션
MQL5 컨설팅 Forex
30+ USD
I would like to attach two indicator to give one signal the first indicator is call support resistance (berry) and the 2nd is called Zdex, the the berry will give the trend direction and the zdex will give the arrow signal alert. Now how the berry works when the candle change direction 3 dots appear, the dots remain there until it is confirm a new direction, with this details that will tell the direction the market
7 애플리케이션
(5) MQL4 지표 전문가 Forex Options
250+ USD
Hello. The EA has license function and it supports trial 7 days for new client. after 7 days, it shows machine ID and it requires the client to contact with support team and buy License key about the machine ID. And develop the license generator. You can use simple MA strategy for example. budget: $250 deadline: a day
22 애플리케이션
MQL5 전문가
30+ USD
hi, I have a strategy coded in Python on Jupiter but I have trouble converting it to Quantconnect. Could you do that? The strategy is based on trading with 10 most liquid crypto coins on Binance rebalanced each month and tracking when the price break 20 day high or low plus some other indicators
3 애플리케이션
30+ USD
I need Scalper ea which can run on EURUSD with low drawdown. Make best ea and Then I want mq4 and ex4 both files. and tell me how to use this bot and how its works
3 애플리케이션
MQL4 전문가
30 - 50 USD
i have my personal EA This EA sometimes opens a new trade without closing the opposite trade in the live market But everything works fine in the strategy tester. i need Our EA should be execution 100%
8 애플리케이션
50+ USD
**Description of the advisor:** My advisor is designed for automatic trading on financial markets taking into account news. Now it: 1. Receives news from external sites that no longer work. And tries to build a table based on this data. 2. Enters the market in accordance with the selected strategy. 3. Uses virtual Stop Loss, Take Profit and Trailing Stop levels, which are not transmitted to orders, but calculated
5 애플리케이션
(1) MQL5 전문가
50+ USD
**Описание советника:** Мой советник предназначен для автоматической торговли на финансовых рынках с учетом новостей. Сейчас он: 1. Получает новости с внешних сайтов, которые больше не работают. И пытается построить таблицу на основе этих данных. 2. Входит в раынок в соответствии с выбраной стратегией. 3. Использует виртуальные уровни Stop Loss, Take Profit и Trailing Stop, которые не передаются в ордера, а
2 애플리케이션
(1) MQL5 전문가
30+ USD
Hi there, I am offering $30 usd for someone to convert four pictures I have to metatrader icons(arrows) that I can use in both MT4 & MT5. We all know that we can change arrows on the chart by using a different arrow code, but the arrows in metatrader are boring and I want to use custom ones. I want the four attached pictures as icons that i can use with indicators that give the option to choose your arrow type. I
5 애플리케이션
30 - 40 USD
I NEED SOMEONE WITH EA CODING EXPERIENCE TO DEVELOP A TRADING MANAGEMENT SYSTEM FOR BOTH MT4 & MT5 PLEASE TAKE NOT THEAT THE EA MANAGEMENT SYSTEM SHOULD HAVE THE FOLLOWING: BASIC STRUCTURE *BUY & SELL BUTTONS *Lot Size (In Pips) *Take Profit (In Pips) *Stoploss (In Pips) *Number of Trades (1-20) ADVANCED STRUCTURE *Pending Orders (Including SL,TP, Lot Size,Price,buy stop,buy limit,sell stop,sell) *Delete Pending
12 애플리케이션
(2) MQL5 전문가
30 - 500 USD
Need a Coding Expert. Fully automated Robot for Trading with minimal losses. It should be able to open/close trades automatically according to the strategy. Also, there should be an option to select maximum leverage for Trading FOREX, COMMODITIES, ENERGIES, etc. The forecast reports of trading strategies to be shared automatically to a specified Email, WhatsApp and Telegram accounts. TO DEVELOP A TRADING MANAGEMENT
100+ USD
Descripción: Necesito duplicar un indicador detector de cambio de polaridad para el activo Boom 1000 en MetaTrader 5 (MT5). El indicador debe identificar de manera precisa los cambios de polaridad en el mercado y duplicar la funcionalidad para asegurar una detección redundante. Especificaciones clave: El indicador debe generar una señal visual clara en el gráfico (flechas o líneas) cada vez que se detecte un cambio
3 애플리케이션
MQL5 지표 C++ C#
30+ USD
``` def moving_average_crossover(prices, short_window, long_window): short_ma = prices.rolling(window=short_window).mean() long_ma = prices.rolling(window=long_window).mean() signals = np.where(short_ma > long_ma, 1, 0) signals = np.where(short_ma < long_ma, -1, signals) return signals # Example usage: prices = pd.Series([...]) # Replace with your price data short_window = 50 long_window = 200 signals
0 애플리케이션
30+ USD
numbers of trad pre day, atr stoplost breakeven opening of odrtger buy = Upper neutral leve 40, previous less than level 50, new >= level 50 sell = Lower neutral level 60, previous less than level 50, new => level 50
13 애플리케이션
Create EA or enhance existing EA MT5 (개인 작업)
150 - 190 USD
Dear Duc Hoan, (Updated 12/09/2024) Thank you for your professional service. It has been a great experience and I hope we can co-operate more in the future! See specs below for this job: (I have removed the transparent panel which is complex and not important at this stage) (You can chose to create a new EA while using my existing codes or merge with my existing EA) To make this a separate trading mode from the
1 애플리케이션
(2) MQL5 지표 전문가
50 - 300 USD
Hello everyone, I am a forex Telegram channel owner who wants to offer the members an option to buy a Telegram to MT4/5 copier, which is developed for our company. Functionality I am looking for is: - Customizable lot size. - Up to 3 TP points, with an option to take partial profits on each TP. - Option to set SL at breakeven once certain TP is hit. - Ability to copy from multiple channels (including private) I know
12 애플리케이션
MQL5 전문가 Forex C++