9EMA Crossover VWAP and MACD 0 Line Crossover

G4M3

New member
Is it possible to alert when the 9EMA crosses VWAP and MACD crosses the 0 Line on the 3m time frame within one candle?

For example, chart shows green arrow when 9EMA crosses VWAP (upside) and MACD is above the 0 Line and headed to the upside and red arrow when 9EMA crosses VWAP (downside) and MACD is below 0 Line and headed to the downside.

Any help is appreciated!
 
Solution
This appears to work:

input fastLength = 9;
input slowLength = 26;
input signalLength = 9;

def emaFast = ExpAverage(Close(), fastLength);
def emaSlow = ExpAverage(Close(), slowLength);
def MACD = emaFast - emaSlow;
def signal = ExpAverage(MACD, signalLength);
def histogram = MACD - signal;

def crossoverUp = emaFast > vwap and emaFast[1] <= vwap[1];
def crossoverDown = emaFast < vwap and emaFast[1] >= vwap[1];

def isMacdUp = histogram > 0 and histogram[1] <= 0;
def isMacdDown = histogram < 0 and histogram[1] >= 0;

plot crossAbove = (crossoverUp and isMacdUp);
crossAbove.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
plot crossBelow =(crossoverDown and isMacdDown)...
See if this does what you're looking for. I'll toy with it myself this coming week. I'll work on adding the arrow as time permits as well.


input fastLength = 9;
input slowLength = 26;
input signalLength = 9;

def emaFast = ExpAverage(Close(), fastLength);
def emaSlow = ExpAverage(Close(), slowLength);
def MACD = emaFast - emaSlow;
def signal = ExpAverage(MACD, signalLength);
def histogram = MACD - signal;

def crossoverUp = emaFast > vwap and emaFast[1] <= vwap[1];
def crossoverDown = emaFast < vwap and emaFast[1] >= vwap[1];

def isMacdUp = histogram > 0 and histogram[1] <= 0;
def isMacdDown = histogram < 0 and histogram[1] >= 0;

Alert((crossoverUp and isMacdUp), "9EMA crosses VWAP (upside) and MACD is above the 0 Line and headed to the upside", Alert.BAR, Sound.RING);
Alert((crossoverDown and isMacdDown), "9EMA crosses VWAP (downside) and MACD is below 0 Line and headed to the downside", Alert.BAR, Sound.RING);
 

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

This appears to work:

input fastLength = 9;
input slowLength = 26;
input signalLength = 9;

def emaFast = ExpAverage(Close(), fastLength);
def emaSlow = ExpAverage(Close(), slowLength);
def MACD = emaFast - emaSlow;
def signal = ExpAverage(MACD, signalLength);
def histogram = MACD - signal;

def crossoverUp = emaFast > vwap and emaFast[1] <= vwap[1];
def crossoverDown = emaFast < vwap and emaFast[1] >= vwap[1];

def isMacdUp = histogram > 0 and histogram[1] <= 0;
def isMacdDown = histogram < 0 and histogram[1] >= 0;

plot crossAbove = (crossoverUp and isMacdUp);
crossAbove.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
plot crossBelow =(crossoverDown and isMacdDown);
crossBelow.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);

Alert((crossoverUp and isMacdUp), "9EMA crosses VWAP (upside) and MACD is above the 0 Line and headed to the upside", Alert.BAR, Sound.RING);
Alert((crossoverDown and isMacdDown), "9EMA crosses VWAP (downside) and MACD is below 0 Line and headed to the downside", Alert.BAR, Sound.RING);
 
Solution
See if this does what you're looking for. I'll toy with it myself this coming week. I'll work on adding the arrow as time permits as well.


input fastLength = 9;
input slowLength = 26;
input signalLength = 9;

def emaFast = ExpAverage(Close(), fastLength);
def emaSlow = ExpAverage(Close(), slowLength);
def MACD = emaFast - emaSlow;
def signal = ExpAverage(MACD, signalLength);
def histogram = MACD - signal;

def crossoverUp = emaFast > vwap and emaFast[1] <= vwap[1];
def crossoverDown = emaFast < vwap and emaFast[1] >= vwap[1];

def isMacdUp = histogram > 0 and histogram[1] <= 0;
def isMacdDown = histogram < 0 and histogram[1] >= 0;

Alert((crossoverUp and isMacdUp), "9EMA crosses VWAP (upside) and MACD is above the 0 Line and headed to the upside", Alert.BAR, Sound.RING);
Alert((crossoverDown and isMacdDown), "9EMA crosses VWAP (downside) and MACD is below 0 Line and headed to the downside", Alert.BAR, Sound.RING);
This appears to work:

input fastLength = 9;
input slowLength = 26;
input signalLength = 9;

def emaFast = ExpAverage(Close(), fastLength);
def emaSlow = ExpAverage(Close(), slowLength);
def MACD = emaFast - emaSlow;
def signal = ExpAverage(MACD, signalLength);
def histogram = MACD - signal;

def crossoverUp = emaFast > vwap and emaFast[1] <= vwap[1];
def crossoverDown = emaFast < vwap and emaFast[1] >= vwap[1];

def isMacdUp = histogram > 0 and histogram[1] <= 0;
def isMacdDown = histogram < 0 and histogram[1] >= 0;

plot crossAbove = (crossoverUp and isMacdUp);
crossAbove.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
plot crossBelow =(crossoverDown and isMacdDown);
crossBelow.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);

Alert((crossoverUp and isMacdUp), "9EMA crosses VWAP (upside) and MACD is above the 0 Line and headed to the upside", Alert.BAR, Sound.RING);
Alert((crossoverDown and isMacdDown), "9EMA crosses VWAP (downside) and MACD is below 0 Line and headed to the downside", Alert.BAR, Sound.RING);
Thanks, I will give it a shot tomorrow. I appreciate all your help
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
441 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top