5977浏览
Transaction setup parameters
Trading strategies
=== BUY ===
=== SELL ===
- Time frame: M5, M15
- Currency pair: EUR / USD , GPB / USD
- Transaction: London, USA
- Number of orders / day: 10 - 15 orders
Trading strategies
=== BUY ===
- Candles close on the upper Keltner
- EMA10 crosses the upper Keltner range from below
- Stop loss in the middle band or up to 12 pips
- Profit target: 15-25 pips
=== SELL ===
Free signals: https://t.me/redfox_daily_forex_signals
Website: https://redfoxsignals.com/
Contact me: https://t.me/redf0x1
Website: https://redfoxsignals.com/
Contact me: https://t.me/redf0x1
评论
I will adjust this script to match the MES - - Micro e-mini Futures.
Ticks are $1.25 per tick.
Typical scalp in terms of risk is based on fee + number of contracts = profit. I like to make about $10 after fees. I find scalping to be massively less risky than long trades .
I will send you my edits.
This is a very useful script!!!!
Cheers
Sorry for the late reply, if you have any ideas, text me
Regards
Hope it helps people to earn more income from this market.
XEmaFirst = outEmaFirst
XUpper = upper
XMid = ma
XLower = lower
plotshape(series=crossover(XEmaFirst, XUpper), title="Open Buy", text="Open Buy", style=shape.labeldown, location=location.abovebar, size=size.tiny, color=color.green, textcolor=color.white, transp=0)
plotshape(series=crossunder(XEmaFirst, XUpper), title="Close Buy", text="Close Buy", style=shape.labeldown, location=location.abovebar, size=size.tiny, color=color.orange, textcolor=color.white, transp=0)
plotshape(series=crossunder(XEmaFirst, XLower), title="Open Sell", text="Open Sell", style=shape.labeldown, location=location.belowbar, size=size.tiny, color=color.red, textcolor=color.white, transp=0)
plotshape(series=crossover(XEmaFirst, XLower), title="Close Sell", text="Close Sell", style=shape.labeldown, location=location.belowbar, size=size.tiny, color=color.blue, textcolor=color.white, transp=0)
OpenBuyAlert = crossover(XEmaFirst, XUpper)
CloseBuyAlert = crossunder(XEmaFirst, XUpper)
OpenSellAlert = crossunder(XEmaFirst, XLower)
CloseSellAlert = crossover(XEmaFirst, XLower)
alertcondition(OpenBuyAlert, title='Open BUY - Cond.', message='You can execute {OPEN BUY} order')
alertcondition(CloseBuyAlert, title='Close BUY - Cond.', message='You have {CLOSE BUY} order')
alertcondition(OpenSellAlert, title='Open SELL - Cond.', message='You can execute {OPEN SELL} order')
alertcondition(CloseSellAlert, title='Close SELL - Cond.', message='You have {CLOSE SELL} order')
Moving average length
Average true range (ATR)
Band multiplier (uses ATR reading)
Moving average type (EMA, SMA)
ATR type (EMA, SMA)
Please tell me how can i set it up?