Expert Advisor 개발 주문 - Uploading data to a website - 새
주문 생성카테고리
인기있는 기술
전체
Forex
Trading robot/indicator debugging
Strategy optimization
Statistics and mathematics
C++
Strategy modules
Uploading data to a website
5 모든 언어의 새 작업
분류:
MT5 EA Developer Required (개인 작업)
30 - 150 USD
MT5 EA Developer Required — London 15-Minute Strategy + 3rd-Hour Rule I am looking for an experienced MQL5/MT5 EA developer to build a fully automated Expert Advisor based on my London Session 15-Minute Strategy , including a 3rd-Hour Fallback Rule . The EA must follow the strategy mechanically with no discretionary interpretation . 1. London Session & DST Automatically detect the London session according to UK
1 애플리케이션
MQL5
EA
Forex
Trading robot/indicator debugging
Strategy optimization
Statistics and mathematics
C++
Strategy modules
Python
Panels and dialog boxes
C#
Stocks
Custom graphics
Futures
MySQL
Product Design
JavaScript
Options
Java
Collection of data on the internet
SQL
HTML
PHP
Data mining
Uploading data to a website
Text writing
Text translation
PostgreSQL
35 - 150 USD
PHANTOM PROTOCOL V1 – MT5 EXPERT ADVISOR SPECIFICATION Develop a professional MetaTrader 5 (MT5) Expert Advisor named “PHANTOM PROTOCOL V1”. PRIMARY MARKET: - XAUUSD (Gold) - Designed primarily for M15 and H1 timeframes. - The EA must work with both 3-digit and 2-digit gold pricing where applicable. TRADING LOGIC: Use pure price-action and market-structure analysis rather than relying on a single indicator. The EA
30+ USD
Create a bot that can trade and read indicators easy to read for first time users. Bot that can be used on a phone and connect to MT5. It should be easy to install or use on any device especially phone and laptop, preferably the bot that can run over night and controllable when needed
40+ USD
//———————————————————————————————————————————————————————————————————— struct S_MCAV { double matureSum; double totalSum; double value; void Init () { matureSum = 0.0; totalSum = 0.0; value = 0.5; } void AddContext (int ctx) { totalSum += 1.0; if (ctx == 1) matureSum += 1.0; } void ApplyDecay (double rate) { matureSum *= rate; totalSum *= rate; } void Update () {