Comments for https://ctrader.com/it/products/3967
Comments for: https://ctrader.com/it/products/3967
- Ggcamilleri51
Buona sera James,
oggi ho acquistato il tuo indicatore TrendPulse VWAP
Puoi dirmi come posso utilzzrlo, ovveroacquisire il segnale VWAP per pilotare un eventuale cBot
Grazie e complimenti
Giuseppe (from Sicily)Good evening Giuseppe,
Thank you very much for purchasing TrendPulse VWAP, and thank you for your kind words.
Yes - TrendPulse VWAP can now be used not only as a visual chart indicator, but also as a signal source for a cBot.
What the indicator provides
TrendPulse VWAP is an adaptive anchored VWAP indicator. It tracks market structure and gives both visual and numeric information about trend and value.The indicator provides:
- current anchored VWAP value
- upper and lower deviation bands
- current trend bias
- structure flip signal
- last swing classification
- price position relative to VWAP
- distance from VWAP
- anchor age in bars
- band position state
In practical terms, this means the indicator can tell a cBot:
- if the market is currently bullish or bearish
- if price is above or below VWAP
- if a new bullish or bearish structure flip has just happened
- if price is stretched above or below the bands
- how old the current anchor is
Main outputs available for automation
The automation-ready version exposes these outputs:VwapOutputUpperBandOutputLowerBandOutputTrendBiasOutputStructureFlipOutputSwingStateOutputPriceVsVwapOutputAnchorAgeBarsOutputDistanceFromVwapOutputBandPositionOutput
How the cBot can read them
A cBot can instantiate the indicator and access the values directly.For example:
-
TrendBiasOutput1= bullish-1= bearish
-
StructureFlipOutput1= new bullish flip-1= new bearish flip0= no new flip
-
PriceVsVwapOutput1= close above VWAP-1= close below VWAP
-
BandPositionOutput2= above upper band1= between VWAP and upper band0= around VWAP-1= between VWAP and lower band-2= below lower band
-
SwingStateOutput2= HL3= LL-2= LH-3= HH- and so on
Typical cBot usage
A robot could use TrendPulse VWAP in several ways, for example:-
buy only when:
- trend bias is bullish
- price is above VWAP
-
sell only when:
- trend bias is bearish
- price is below VWAP
-
trigger entries on structure flips:
- bullish flip = possible long setup
- bearish flip = possible short setup
-
use bands as filters:
- avoid buying when price is already too stretched above the upper band
- avoid selling when price is already too stretched below the lower band
-
use anchor age as confirmation:
- ignore very fresh flips
- trade only when the current anchor has already developed for a few bars
Example logic
A simple cBot could do something like this:protected override void OnStart() { _trendPulse = Indicators.GetIndicator<cAlgo.TrendPulseVWAP>(); } protected override void OnBar() { double bias = _trendPulse.TrendBiasOutput.LastValue; double flip = _trendPulse.StructureFlipOutput.LastValue; double vwap = _trendPulse.VwapOutput.LastValue; double upper = _trendPulse.UpperBandOutput.LastValue; double lower = _trendPulse.LowerBandOutput.LastValue; double priceVsVwap = _trendPulse.PriceVsVwapOutput.LastValue; double bandPosition = _trendPulse.BandPositionOutput.LastValue; double anchorAge = _trendPulse.AnchorAgeBarsOutput.LastValue; // .Last(1) reads the last closed bar . // .LastValue reads the current latest element , which is usually the still-forming bar. bool bullish = bias > 0; bool bearish = bias < 0; bool bullishFlip = flip > 0; bool bearishFlip = flip < 0; bool hasLong = Positions.Find("TPVWAP_LONG", SymbolName) != null; bool hasShort = Positions.Find("TPVWAP_SHORT", SymbolName) != null; <....> }Interesting results, even simple cBot using the indicator shows around 60% profit starting from Jan 2026.
Thanks for the question!
Best regards,
James- Ggcamilleri51
James,
veramente complimenti per il tuo lavoro . L'indicatore è excellent !
Grazie ancora per la nuova versione che mi consente di accedere ai suoi dati per un eventuale Bot
Buona giornata e buon lavoro
Giuseppe- Ggcamilleri51
"Hi James, to use TrendPulse VWAP in a cBot via Indicators.GetIndicator<>(), I need the exact full class name including namespace. Could you confirm the exact string to use?
For example: cAlgo.Indicators.TrendPulseVWAP or similar.
Thank you so mutch
GiuseppeIndicators.GetIndicator<cAlgo.TrendPulseVWAP>(); will work, but you first need to add the Indicator to the cBot itself. To do this, open Project settings (button right next to "Build cBot" button) - References - Indicators and add TrendPulseVWAP.
- Ggcamilleri51
Hi James, exuse me ,
I found the namespace cAlgo.TrendPulseVWAP but when I go to Project Settings → References → Indicators, TrendPulse VWAP does not appear in the list.
Is there a special version of the indicator that allows cBot integration, or do you provide an automation-ready package?"
I want to reassure you that I'm neither a programmer nor a salesman.
I enjoy designing something for my own personal use (so much so that I bought TrendPulseVWAP) and I use AI to help me.
I'm currently trying to generate a bot that uses your indicator: that's all.Thanks again for your help.
Giuseppe
Hello,
Last version of the indicator supports cBot integration.To make it work,
- Add the indicator In your cBot Project settings. If indicator is installed in cTrader, you'll find it in the list.
- Use the code from my first comment to initialize the indicator in the code.
- Ggcamilleri51
Hi James,
I still get error CS0234 - TrendPulseVWAP does not exist in namespace cAlgo.
The indicator does NOT appear in Project Settings → References → Indicators list.
Only open source indicators appear there. All marketplace/purchased indicators are invisible in that list.
Can you send me the .algo or .dll file directly so I can add it manually as a reference ? Or is there another way to make purchased indicators appear in the References list?
Thank you!
GiuseppeHello,
I've opened a case with the support to find out if it even possible to share signals and let you know as soon as I receive an answer for them- Ggcamilleri51
Thank you
- Ggcamilleri51
Good morning, James,
I just downloaded the update of your wonderful TrendPulse VWAP 4.0 indicator, which would be great to use in conjunction with a cBot.
I actually purchased your indicator because I was impressed by its technical features and the wonderful graphics, but I'm actually a longtime MT5 user, not a cTrader user. I'd like to ask if, for a fee, it would be possible to get a version of the indicator for MT5, with the option of knowing the buffers the indicator creates, perhaps for use with an EA.
Thank you in advance if you'd like to reply.