INVITE-ONLY SCRIPT
업데이트됨 FX Social Entry Finder

This can be applied to Forex, Stocks and Crypto.
Understanding it
When the buy or sell signal align with the wave, it means the price is heading in the direction of alignment.
This indicator is intended to be used as a confirmation indicator for other algorithms for best result.
Indicators with specifically tested and chosen settings that have shown to work on a number of timeframes.
How to use on a buy
When you receive a buy signal if it's within the wave or above the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to sell
When you receive a sell signal if it's within the wave or below the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to exit
You can set our indicator to alert you when its a good time to exit the trade.
How to Access
Gain access to FX Social Entry Finder for your TradingView account by being a active member of FX Social.
Understanding it
When the buy or sell signal align with the wave, it means the price is heading in the direction of alignment.
This indicator is intended to be used as a confirmation indicator for other algorithms for best result.
Indicators with specifically tested and chosen settings that have shown to work on a number of timeframes.
How to use on a buy
When you receive a buy signal if it's within the wave or above the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to sell
When you receive a sell signal if it's within the wave or below the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to exit
You can set our indicator to alert you when its a good time to exit the trade.
How to Access
Gain access to FX Social Entry Finder for your TradingView account by being a active member of FX Social.
릴리즈 노트
This can be applied to Forex, Stocks and Crypto.Understanding it
When the buy or sell signal align with the wave, it means the price is heading in the direction of alignment.
This indicator is intended to be used as a confirmation indicator for other algorithms for best result.
Indicators with specifically tested and chosen settings that have shown to work on a number of timeframes.
How to use on a buy
When you receive a buy signal if it's within the wave or above the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to sell
When you receive a sell signal if it's within the wave or below the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to exit
You can set our indicator to alert you when its a good time to exit the trade.
How to Access
Gain access to FX Social Entry Finder for your TradingView account by being a active member of FX Social.
릴리즈 노트
// This source code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org/MPL/2.0/// © LucemAnb
//version=4
study(title="Wave Analyzer", shorttitle="Wave Anaylzer", overlay=true)
smma(src, length) =>
smma = 0.0
smma := na(smma[1]) ? sma(src, length) : (smma[1] * (length - 1) + src) / length
smma
jawLength = input(13, minval=1, title="Jaw Length")
teethLength = input(8, minval=1, title="Teeth Length")
lipsLength = input(5, minval=1, title="Lips Length")
jawOffset = input(8, title="Jaw Offset")
teethOffset = input(5, title="Teeth Offset")
lipsOffset = input(3, title="Lips Offset")
jaw = smma(hl2, jawLength)
teeth = smma(hl2, teethLength)
lips = smma(hl2, lipsLength)
// plot(jaw, offset = jawOffset, color=#3BB3E4)
// plot(teeth, offset = teethOffset, color=#FF006E)
// plot(lips, offset = lipsOffset, color=#36C711)
trend = input(false, "Filter Trend")
d(d) => security(syminfo.tickerid, input("240", "Moving Averages Timeframe", type=input.resolution), d)
ema1 = d(ema(close, input(50)))
ema2 = d(ema(close, input(200)))
ema3 = d(ema(close, input(20)))
plot(ema1, "EMA 1", color.orange, 4, transp=80)
plot(ema2, "EMA 2", color.purple, 4, transp=80)
plot(ema3, "EMA 3", color.blue, 4, transp=80)
below = lips < teeth and lips < jaw
above = lips > teeth and lips > jaw
sell = below and not below[1] and (not trend or close < min(ema1, min(ema2, ema3)))
sell_exit = not below and below[1]
buy = above and not above[1] and (not trend or close > max(ema1, max(ema2, ema3)))
buy_exit = not above and above[1]
plotshape( sell, "Sell", shape.triangledown, location.abovebar, color.red, size=size.small, text="sell")
plotshape( buy, "Exit Buy", shape.triangleup, location.belowbar, color.lime, size=size.small, text="buy")
plotshape( sell_exit and not buy, "Exit Sell", shape.xcross, location.belowbar, color.red, size=size.small, text="exit sell")
plotshape( buy_exit and not sell, "Exit Buy", shape.xcross, location.abovebar, color.lime, size=size.small, text="exit buy")
alertcondition( sell, "SELL Entry")
alertcondition( buy, "BUY Entry")
alertcondition( sell_exit, "Sell Exit")
alertcondition( buy_exit, "Buy Exit")
릴리즈 노트
// This source code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org/MPL/2.0/// © FX SOCIAL
//version=4
study(title="Wave Analyzer", shorttitle="Wave Anaylzer", overlay=true)
smma(src, length) =>
smma = 0.0
smma := na(smma[1]) ? sma(src, length) : (smma[1] * (length - 1) + src) / length
smma
jawLength = input(13, minval=1, title="Jaw Length")
teethLength = input(8, minval=1, title="Teeth Length")
lipsLength = input(5, minval=1, title="Lips Length")
jawOffset = input(8, title="Jaw Offset")
teethOffset = input(5, title="Teeth Offset")
lipsOffset = input(3, title="Lips Offset")
jaw = smma(hl2, jawLength)
teeth = smma(hl2, teethLength)
lips = smma(hl2, lipsLength)
// plot(jaw, offset = jawOffset, color=#3BB3E4)
// plot(teeth, offset = teethOffset, color=#FF006E)
// plot(lips, offset = lipsOffset, color=#36C711)
trend = input(false, "Filter Trend")
ema1 = ema(close, input(50))
ema2 = ema(close, input(200))
ema3 = ema(close, input(20))
plot(ema1, "EMA 1", color.orange, 4, transp=80)
plot(ema2, "EMA 2", color.purple, 4, transp=80)
plot(ema3, "EMA 3", color.blue, 4, transp=80)
atr = atr(input(14, "ATR Length"))
distance = input(1.0, "Signal Max Distance")
takeprofit = input(2.0, "TP ATR Mult")*atr
stoploss = input(2.0, "SL ATR Mult")*atr
below = lips < teeth and lips < jaw
above = lips > teeth and lips > jaw
sell = below and not below[1] and (not trend or close < min(ema1, min(ema2, ema3))) and min(min(lips, teeth), jaw)-close < atr*distance
sell_exit = not below and below[1]
buy = above and not above[1] and (not trend or close > max(ema1, max(ema2, ema3))) and close - max(max(lips, teeth), jaw) < atr*distance
buy_exit = not above and above[1]
plot(buy?close+takeprofit:close-takeprofit, "TP", display=display.none, editable=false)
plot(buy?close-stoploss:close+stoploss, "SL", display=display.none, editable=false)
plotshape( sell, "Sell", shape.triangledown, location.abovebar, color.red, size=size.small, text="sell")
plotshape( buy, "Exit Buy", shape.triangleup, location.belowbar, color.lime, size=size.small, text="buy")
plotshape( sell_exit and not buy, "Exit Sell", shape.xcross, location.belowbar, color.red, size=size.small, text="exit sell")
plotshape( buy_exit and not sell, "Exit Buy", shape.xcross, location.abovebar, color.lime, size=size.small, text="exit buy")
alertcondition( sell, "SELL Entry", 'sell {{ticker}} tp={{plot("TP")}} sl={{plot("SL")}}')
alertcondition( buy, "BUY Entry", 'buy {{ticker}} tp={{plot("TP")}} sl={{plot("SL")}}')
alertcondition( sell_exit, "close {{ticker}} sell")
alertcondition( buy_exit, "close {{ticker}} buy")
릴리즈 노트
Sep 21, 2020This can be applied to Forex, Stocks and Crypto.
Understanding it
When the buy or sell signal align with the wave, it means the price is heading in the direction of alignment.
This indicator is intended to be used as a confirmation indicator for other algorithms for best result.
Indicators with specifically tested and chosen settings that have shown to work on a number of timeframes.
Has built in take profit and stop loss feature to help create potential entries for yoy
How to use on a buy
When you receive a buy signal if it's within the wave or above the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to sell
When you receive a sell signal if it's within the wave or below the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to exit
You can set our indicator to alert you when its a good time to exit the trade.
How to Access
Gain access to FX Social Entry Finder for your TradingView account by being a active member of FX Social.
Oct 21, 2020
Release Notes: This can be applied to Forex, Stocks and Crypto.
Understanding it
When the buy or sell signal align with the wave, it means the price is heading in the direction of alignment.
This indicator is intended to be used as a confirmation indicator for other algorithms for best result.
Indicators with specifically tested and chosen settings that have shown to work on a number of timeframes.
How to use on a buy
When you receive a buy signal if it's within the wave or above the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to sell
When you receive a sell signal if it's within the wave or below the wave, its an indication the market about to continue that direction. You could aim for 20-50 pips depending on the pair.
When to exit
You can set our indicator to alert you when its a good time to exit the trade.
How to Access
Gain access to FX Social Entry Finder for your TradingView account by being a active member of FX Social.
초대 전용 스크립트
이 스크립트는 작성자가 승인한 사용자만 접근할 수 있습니다. 사용하려면 요청을 보내고 승인을 받아야 합니다. 일반적으로 결제 후에 승인이 이루어집니다. 자세한 내용은 아래 작성자의 지침을 따르거나 FXSocialEa에게 직접 문의하세요.
트레이딩뷰는 스크립트 작성자를 완전히 신뢰하고 스크립트 작동 방식을 이해하지 않는 한 스크립트 비용을 지불하거나 사용하지 않는 것을 권장하지 않습니다. 무료 오픈소스 대체 스크립트는 커뮤니티 스크립트에서 찾을 수 있습니다.
작성자 지시 사항
You can gain access after becoming sa member of FX SOCIAL
Profit over wages
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.
초대 전용 스크립트
이 스크립트는 작성자가 승인한 사용자만 접근할 수 있습니다. 사용하려면 요청을 보내고 승인을 받아야 합니다. 일반적으로 결제 후에 승인이 이루어집니다. 자세한 내용은 아래 작성자의 지침을 따르거나 FXSocialEa에게 직접 문의하세요.
트레이딩뷰는 스크립트 작성자를 완전히 신뢰하고 스크립트 작동 방식을 이해하지 않는 한 스크립트 비용을 지불하거나 사용하지 않는 것을 권장하지 않습니다. 무료 오픈소스 대체 스크립트는 커뮤니티 스크립트에서 찾을 수 있습니다.
작성자 지시 사항
You can gain access after becoming sa member of FX SOCIAL
Profit over wages
면책사항
이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.