361
|
Mql4 wining Rate strategy timefrma 5 minute
|
|
31st March 2024
|
362
|
ich brauche trading zeiten im 24 stunden format für meinen expert advisor
|
|
30th March 2024
|
363
|
',' - syntax error, parameter missedtester.mq41735',' - syntax error, parameter missedtester.mq41835',' - syntax error, parameter missedtester.mq41934'>=' - operand expectedtester.mq42231')' - unexpected tokentester.mq42238return value of 'OrderSelect' should be checkedtester.mq4247',' - unexpected tokentester.mq42575'Digits' - some operator expectedtester.mq42577'NormalizeDouble' - wrong parameters counttester.mq42536expression not booleantester.mq42585'>' - operand expectedtester.mq42594')' - unexpected tokentester.mq425110expression has no effecttester.mq42596',' - syntax error, parameter missedtester.mq426103'else' - illegal 'else' without matching 'if'tester.mq4277',' - syntax error, parameter missedtester.mq433121',' - syntax error, parameter missedtester.mq438123function must return a valuetester.mq441414 errors, 4 warnings155
|
|
30th March 2024
|
364
|
generate a mq4 expert advisor that takes buy and sell trades using atr and bollinger bands with a adjustable fixed stop loss and take profit
|
|
30th March 2024
|
365
|
calculate awesome indictor value from array in mq5
|
|
30th March 2024
|
366
|
I want lean and implement trading bot
|
|
30th March 2024
|
367
|
Make an Expert advisor called My_EAtest 1. where it will open a Buy Limit order at 1.077 and a TP at 1.078 which when price has reached TP at 1.078 it will always create a Buy Limit order at 1.077 and TP at 1.078 2. where it will loop
|
|
30th March 2024
|
368
|
The **Smart Money Concept (SMC)** in forex trading involves understanding the behavior of institutional players, such as banks and hedge funds, and analyzing supply and demand dynamics, order blocks, and price patterns¹. Let's delve into the details:1. **What is the Smart Money Concept in Trading?** - The SMC revolves around **supply, demand, and market structure**. Market makers, often referred to as the "smart money," leave traces of their trading decisions on the chart. Smart money concept traders follow these footprints. - Institutions like banks and hedge funds, with substantial capital, can allegedly manipulate the market against retail traders. They may set traps for retail traders, who are often unaware of these activities, leading to unpredictable market swings¹.2. **SMC Key Concepts:** - **Institutional Footprints**: Smart money leaves clues on the chart, such as order blocks, significant price levels, and patterns. - **Supply and Demand Zones**: Identifying areas where supply exceeds demand (resistance) or demand exceeds supply (support). - **Market Structure**: Understanding how price moves within trends, consolidations, and reversals.3. **The Smart Money Concept Trading Strategy – How Does It Work?** - **Identify Institutional Levels**: Locate key support and resistance levels where smart money enters and exits positions. - **Analyze Order Blocks**: Look for clusters of orders at specific price levels. - **Observe Price Patterns**: Pay attention to candlestick patterns, trend formations, and reversals.4. **How to Trade with the Smart Money Concept Trading Strategy:** - **Confirmation**: Wait for price action to validate institutional levels. - **Risk Management**: Set stop-loss orders based on smart money levels. - **Patience**: Be patient and avoid chasing price.5. **Smart Money Concept vs. Price Action – What’s the Difference?** - **SMC** focuses on institutional behavior and specific levels. - **Price
|
|
30th March 2024
|
369
|
Write a code for me : when there is a green or Up candle on specific timeframe and after that there are two consecutive red or down candle, then indicate an down direction arrow on second red candle AND when there is a red or down candle on specific timeframe and after that there are two consecutive green or UP candle, then indicate an UP direction arrow on second red candle
|
|
29th March 2024
|
370
|
- O EA tem como objetivo realizar operações de compra e venda no mercado Forex diariamente.- É permitido ao EA abrir apenas uma posição de cada vez, várias vezes ao dia, até atingir um objetivo diário em percentagem (variável externa), sobre o balanço inicial do dia. depois de atingir não pode negociar mais, apenas no dia seguinte com um novo objetivo.- O sentido da ordem é sempre determinado pelo sentido da barra anterior, o volume é sempre o balanço a dividir pela variavele externa divisor, que pode ter um valor inicial de 10000.- O EA irá negociar dentro de uma janela horária entre as 6h45 e as 18h45, com variável externa.- O EA irá monitorizar o lucro e o prejuízo da ordem aberta em percentual sobre o balanço, e irá fechar a posição quando o lucro e o prejuízo atingirem os valores definidos em variáveis externas para cada um, depois em caso de fecho com prejuízo o volume da próxima posição deve dobrar e caso feche com lucro o o volume da próxima posição deve voltar ao calculo original.
|
|
29th March 2024
|
371
|
Design a profitable price action EA for GBPUSD M15 chart
|
|
28th March 2024
|
372
|
zoom out the current chart when a variable zoom is set true
|
|
28th March 2024
|
373
|
turn this to mql5 from pine script // This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) https://creativecommons.org/licenses/by-nc-sa/4.0/// © LuxAlgo//@version=5indicator("FVG Sessions [LuxAlgo]", overlay = true, max_lines_count = 500, max_boxes_count = 500)//------------------------------------------------------------------------------//Settings//-----------------------------------------------------------------------------{bullCss = input.color(color.teal, 'FVG Level' , inline = 'bull')bullAreaCss = input.color(color.new(color.teal, 50), 'Area' , inline = 'bull')bullMitigatedCss = input.color(color.new(color.teal, 80), 'Mitigated', inline = 'bull')bearCss = input.color(color.red, 'FVG Level' , inline = 'bear')bearAreaCss = input.color(color.new(color.red, 50), 'Area' , inline = 'bear')bearMitigatedCss = input.color(color.new(color.red, 80), 'Mitigated' , inline = 'bear')//-----------------------------------------------------------------------------}//UDT's//-----------------------------------------------------------------------------{type fvg float top float btm bool mitigated bool isnew bool isbull line lvl box areatype session_range line max line min//-----------------------------------------------------------------------------}//Methods//-----------------------------------------------------------------------------{n = bar_index//Method for setting fair value gapsmethod set_fvg(fvg id, offset, bg_css, l_css)=> avg = math.avg(id.top, id.btm) area = box.new(n - offset, id.top, n, id.btm, na, bgcolor = bg_css) avg_l = line.new(n - offset, avg, n, avg, color = l_css, style = line.style_dashed) id.lvl := avg_l id.area := area//Method for setting session range maximum/minimummethod set_range(session_range id)=> max = math.max(high, id.max.get_y2())
|
|
28th March 2024
|
374
|
Mql5 code for entry and exit position with atr,sma,ichimoko,bolingerband indicators،Stochastic Oscillator and set automatically reward and stoploss
|
|
28th March 2024
|
375
|
Can you write mql4 code that uses a custom indicator named "Scalper SIP Pro" Declare magic_number as inputDeclare lot_size as inputDeclare buy_signal variableDeclare sell_signal variableDeclare entry_price variableDeclare stop_loss variableDeclare take_profit_1 variableDeclare take_profit_2 variableDeclare take_profit_3 variableDeclare take_profit_percent_1 variableDeclare take_profit_percent_2 variableDeclare take_profit_percent_3 variableAssign buy_signal the value from the customer indicator buffer 0 Assign sell_signal the value from the customer indicator buffer 1Assign entry_price the value from the customer indicator buffer 2Assign stop_loss the value from the customer indicator buffer 3Assign take_profit_1 the value from the customer indicator buffer 4Assign take_profit_2 the value from the customer indicator buffer 5Assign take_profit_3 the value from the customer indicator buffer 6Assign take_profit_percent_1 the value from the customer indicator buffer 7Assign take_profit_percent_2 the value from the customer indicator buffer 8Assign take_profit_percent_3 the value the customer indicator buffer 9For every new candle bar, if the price is greater than to the buy_signal, open a buy trade, use stop_loss as stop loss and take_profit_3 as the take profitif the price is lower than the sell_signal, open a sell trade, use stop_loss as stop loss and take_profit_3 as the take profitFor every opened trade,if the price equals take_profit_1, close partially the take profit using take_profit_percent_1if the price equals take_profit_2, close partially the take profit using take_profit_percent_2if the price equals take_profit_3, close all trades
|
|
28th March 2024
|
376
|
I want mt4 hedging profitable code
|
|
27th March 2024
|
377
|
I want to code a MT5 expert advisor to open a trade at specific time each day.
|
|
27th March 2024
|
378
|
write code for plot henkiashi candle in mql5
|
|
27th March 2024
|
379
|
can you create an indicator in mql4 which have a button and on click of button a new line is added at bid price which can be selected and move with mouse
|
|
26th March 2024
|
380
|
can you please create me an expert advisor that trades gold? it should have tp of 130 and sl of 360ex price is: 2124.57, tp: 2125.87 sl: 2120.97it should be one entry per strategy, once trade is closed, can open a new onealso can you also add a 7-step martingale system?if first trade closes in loss, it will double the lot....and so on, 7 timesfor example, initial lot 0.01 closed in loss, next one is 0.02...then 0.04...till 0.64, no matter the last one is loss or win, the next trades resets to initial step 0.01the strategy consists of "chase trends with precision", it should trigger the signals to place trades based on:Calculate the 200-day Exponential Moving Average (EMA200) as a trend filter.Calculate the MACD indicator, including the MACD line, signal line, and histogram, to determine market trends.Calculate the Average True Range (ATR) and Average Directional Index (ADX) to confirm trend strength.Long entry condition: Close price above EMA200, MACD line above signal line and below 0, ADX greater than or equal to 25.Short entry condition: Close price below EMA200, MACD line below signal line and above 0, ADX greater than or equal to 25.Use ATR to calculate stop loss and take profit distances, with stop loss set at 1% and take profit set at 1.5%.When long conditions are met, enter long positions using stop and limit orders; when short conditions are met, enter short positions using stop and limit orders.Test the strategy across different timeframes, such as 15-minute, 30-minute, 1-hour, etc., to find the optimal trading timeframe.it should me mql4 code so I can compile the expert adbisor
|
|
26th March 2024
|