Retail Sentiment Indicator v4 paid

by programsforfx in category Trend at 23/04/2021
Description

Retail Sentiment
What if there was a way to know where the majority of retail traders were positioned in any given symbol at any given time?

      "Data Confirms Grim Truth: 70-80% of Retail Traders are Unprofitable
       https://www.babypips.com/news/almost-80-percent-of-retail-traders-are-unprofitable"

Simply trade against the majority of retail traders and you'll be guaranteed to profit.
Contact programsforfx@gmail.com for price.

Screenshots
The green line represents retail buyers and red is sellers. Once retail buyers are the majority, the edge is in doing the opposite.

EURUSD

Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
Formula / Source Code
Language: C#
Trading Platform: cAlgocTrader
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 RetailSentiment : Indicator
    {
        protected override void Initialize()
        {
            ChartObjects.DrawText("RetailSentiment", "Please contact programsforfx@gmail.com", StaticPosition.Center, Colors.Red);
        }

        public override void Calculate(int index)
        {
            // Calculate value at specified index
            // Result[index] = ...
        }
    }
}
Comments

trend_meanreversion - May 04, 2021 @ 01:19

Where are you getting historical retail sentiment data from ? 

0