Search
Products
Community
Markets
News
Brokers
More
EN
Get started
Community
/
Ideas
/
//@version=5 indicator("Simple Moving Average Crossover", overla
INFOSYS LTD
//@version=5 indicator("Simple Moving Average Crossover", overla
By ashokaanjana706
Follow
Follow
Dec 29, 2023
0
Dec 29, 2023
//
version
=5
indicator("Simple Moving Average Crossover", overlay=true)
// Input for moving average length
length = input(14, title="Moving Average Length")
// Calculate SMAs
sma_short = sma(close, length)
sma_long = sma(close, 2 * length)
// Plot SMAs on the chart
plot(sma_short, color=color.blue, title="Short MA")
plot(sma_long, color=color.red, title="Long MA")
// Buy signal when short MA crosses above long MA
strategy.entry("Buy", strategy.long, when=crossover(sma_short, sma_long))
// Sell signal when short MA crosses below long MA
strategy.entry("Sell", strategy.short, when=crossunder(sma_short, sma_long))
Technical Indicators
ashokaanjana706
Follow
Disclaimer
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the
Terms of Use
.