Description
The Weis Wave Volume indicator (WWV indicator) is a smart money footprints indicator. It is built upon the current market trend aiming to describe the direction of the price movement. When the price develops a strong trend, the WWV also grows bigger.
+ Open an UP order when the WWV indicator switches from red/dark blue to green/light blue and the Heiken Ashi candlestick chart is green/light blue.
+ Open a DOWN order when the WWV indicator switches from green to red/dark blue and the Heiken Ashi candlestick chart is red/dark blue.
You can combine with SMA 30 also to filter the noise.
If you trade smart money concepts, then this is a very powerful indicator.
Contact me at reachvanesh@gmail.com for the cost & indicator
using System;
using cAlgo.API;
using cAlgo.API.Internals;
using cAlgo.API.Indicators;
using cAlgo.Indicators;
namespace cAlgo
{
[Indicator(IsOverlay = false, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
public class WeisVol : Indicator
{
protected override void Initialize()
{
ChartObjects.DrawText("Weis Volume", "Please contact reachvanesh@gmail.com", StaticPosition.Center, Colors.Red);
}
public override void Calculate(int index)
{
// Calculate value at specified index
// Result[index] = ...
}
}
}
For3xScalper'
Joined on 15.05.2020
- Distribution: Paid
- Language: C#
- Trading platform: cTrader Automate
- File name: Weis Vol.algo
- Rating: 0
- Installs: 1443
- Modified: 13/10/2021 09:54