[Resolved]  AMIBROKER CHART AFL SRI CHAKRA BUY & SELL — AFL Fraud Mr.Jeevanlal

Address: Gaya, Bihar

I suffered a lot. I bought this AFL by mistakenly I stricly folow this AFL buy sell signals with their advice with in a month my account became zero. I asked about the signal filer to this AFL author Mr. Baster.Jeevanlal he replied to me that this afl version is version 2 so we have version 4 again he asked money for the version 4 he again try to cheat me to sell the afl.

I want to kick these kind of cheating basters.

SRI CHAKRA TRADING CHARTS +91-[protected](INDIA) YAHOO MESSANGER ID: [protected]@yahoo.co.in
Was this information helpful?
No (1)
Yes (1)
Aug 13, 2020
Complaint marked as Resolved 
 
10 Comments

Comments

I AM USING SRI CHAKRA CHARTS FOR A LONG TIME AND FOLOWING HIS ADVICE REGARDING THE TRADES & TIME FRAMES -- ITS REALY GOOD..

I GIVE MY PHONE NUMBER..ANYONE CAN CALL PERSONALLY...




THALLA HEMACHAND
TIRUPATHI
MOBILE: [protected]
Yes I also know about this person he is an International fraud.
Therealdeal13's reply, Dec 10, 2016
I got a guidance chart from them and it seems to be working very well for my trading.

All systems have accuracy differences and none can exactly predict the market. No one can. But Mr. Jeevanlal was kind enough to offer support even though it was late night and he was not well. Just because I had doubts.

Instead of spreading false news go learn something. Such unprofessional behavior.
I ALREADY PAID RS.10, 000/- FOR SRI CHAKRA TRADING INDICATOR BUT ITS COPY AND PAS FROM TRADERJI FREE FORMS. HE ALSO CHEATED ME
Therealdeal13's reply, Dec 10, 2016
I got a guidance chart from them and it seems to be working very well for my trading.

All systems have accuracy differences and none can exactly predict the market. No one can. But Mr. Jeevanlal was kind enough to offer support even though it was late night and he was not well. Just because I had doubts.

Instead of spreading false news go learn something. Such unprofessional behavior.
[protected] This no is Jeevanlal Son Ramakrishna Mobile no He also AFL fraud cheating team. There is no perfect AFL available market. If available then why Jeevanlal and him son Ramakrishna(here hemachand) not making money them own and begging money from public this Bagger family.

Rajsaker
Tirupathi.
Therealdeal13's reply, Dec 10, 2016
It venture... Don't try to promote your company but defaming others
Hello Mr. Thalla hemachand&JeevanLal don't making fool public. I also bought your Sri.Chakra AFL it's not working.

Wanbt you good afl which one generate genuine buy/sell chose NMA trading system getting cost free available here http://www.wisestocktrader.com/

Again i[censored] cheating public. I have all records to transfered money from my account to the Jeevanlal fraud account. I should take serious action careful. I warn the AFL Fraud Mr.Thalla Hemachand& AFL Fraud Mr.JeevanLal
Therealdeal13's reply, Dec 10, 2016
Trading stocks ... First get your facts right .. if you don't know anything don't come and rant here. Remember the person can sue you for this. Then why dint you go buy there for free. Why did you pay him ? Because he was a good man who tried to help you.
I also bought this formula at Rs.10, 000/- but waste of cost and my time

// formula written by Jeevan Lal
_SECTION_BEGIN
("P&F Daily");
//AFL P&F Chart for Amibroker Indicator window. Based on High/low prices.
//Based on code in AB help files
//Reverse is 2 boxes.
//Graham Kavanagh 30 Sep 2003
Version
(4.40);
SetBarsRequired
(100000, 100000);
//Size for P&F boxes
boxsize=
IIf(C>=0.01 AND C<29, 0.10,
IIf
(C>29 AND C<60, 0.15,
IIf
(C>60 AND C<140, 0.20,
IIf
(C>140 AND C<290, 0.50,
IIf
(C>290 AND C<600, 1.00,
IIf
(C>600 AND C<1400, 2.00,
IIf
(C>1400 AND C<2900, 3.00,
IIf
(C>2900 AND C<6000, 5.00,
5.00
))))))));
Box =
LastValue(boxsize);
HX =
round((H/box)*10)/10;
LX =
round((L/box)*10)/10;
RH =
floor(HX);
FL =
ceil(LX);



// initialize first element
j =
0;
Reverse =
2; // reversal requirement
PFC[j] = FL[
0];
PFO[j] = PFC[j] +
1;
down =
1; // By default the first bar is a down bar.
up =
0;
swap =
0;
// perform the loop that produces PF Chart
for
( i = 1; i < BarCount; i++ )
{
if( FL[i] <= PFC[j]-1 && down) //continue down
{
PFC[j] = FL[i];
PFO[j] = PFC[j] +
1;
}
else
{
if( RH[i] >= PFC[j] + Reverse && down) //Change direction to up
{
j++;
swap =
1;
PFC[j] = RH[i];
PFO[j] = PFC[j]-
1;
}
}
if( RH[i] >= PFC[j] + 1 && up) //Continue up
{
PFC[j] = RH[i];
PFO[j] = PFC[j] -
1;
}
else
{
if( FL[i] <= PFC[j] - Reverse && up) //Change direction to down
{
j++;
PFC[j] = FL[i];
PFO[j] = PFC[j] +
1;
swap =
1;
}
}
if( swap )
{
swap =
0;
if( up )
{
up =
0;
down =
1;
}
else
{
up =
1;
down =
0;
}
}
}
delta = BarCount - j-
1;

PFO =
Ref( PFO, -delta );
PFC =
Ref( PFC, -delta );
// High-Low range sets the height of the P&F bar
H
= IIf(Ref(PFC, -1)>Ref(PFO, -1), Ref(HHV(PFC, 1), -1)-1, Max(PFO, PFC))*Box;
L
= IIf(Ref(PFC, -1)<Ref(PFO, -1), Ref(LLV(PFC, 1), -1)+1, Min(PFO, PFC))*Box;
O
= IIf(Ref(PFC, -1)>Ref(PFO, -1), Ref(HHV(PFC, 1), -1)-1, IIf(Ref(PFC, -1)<Ref(PFO, -1), Ref(LLV(PFC, 1), -1)+1, PFO))*Box;
// the difference between Open AND Close should be set to box size
// the sign decides if X or O are plotted
C
= O + Box * IIf( PFC > PFO, 1, -1);
GraphXSpace
= 2;
Plot
( C, "J's SRI CHAKRA -- Ph: [protected]", IIf( PFC > PFO, colorCustom9, colorRed ), styleCandle+styleNoLabel+stylePointAndFigure);


_SECTION_END
();




_SECTION_BEGIN
( "Point & Figure w Values adj" );
GraphXSpace
= 5;
SetChartBkColor
( ParamColor( "BackGroundColor", colorBlack) );
//GraphColor = ParamColor("GarphColor", colorLightGrey);
GridColor =
ParamColor( "GridColor", colorLightGrey );
Scaling =
ParamList( "Scaling Method", "Traditional|Percentage|AVG True
Range
" );
if
( scaling == "Traditional" )
Box =
Param( "Box", 1, 0.2, 10, 0.1 );
else
if ( scaling == "Percentage" )
Box =
Param( "Box ", 1, 0.2, 10, 0.1 ) / 100 * LastValue( C );
else
if ( scaling == "AVG True Range" )
Box =
Param( "Box", 1, 0.3, 5, 0.1 ) * LastValue( ATR ( 20 ) );
shiftChart =
0;
shiftLastClose =
1;
shiftGrid =
7;
shiftPriceAxis =
2;
Reverse =
Param( "Reverse", 3, 1, 5 );
j =
0;
PFL[
0] = Box * ceil( Low[0] / Box ) + Box;
PFH[
0] = Box * floor( High[0] / Box );
direction =
0;
for
( i = 1; i < BarCount; i++ )
{
if ( direction[j] == 0 )
{
if ( Low[i] <= PFL[j] - Box )
{
PFL[j] = Box *
ceil( Low[i] / Box );
}
else
{
if ( High[i] >= PFL[j] + Reverse*Box )
{
j++;
direction[j] =
1;
PFH[j] = Box *
floor( High[i] / Box );
PFL[j] = PFL[j -
1] + Box;
}
}
}
else
{
if ( High[i] >= PFH[j] + Box )
{
PFH[j] = Box *
floor( High[i] / Box );
}
else
{
if ( Low[i] <= PFH[j] - Reverse * Box )
{
j++;
direction[j] =
0;
PFH[j] = PFH[j -
1] - Box;
PFL[j] = Box *
ceil( Low[i] / Box );
}
}
}
}
// end for loop
delta = BarCount - j -
1;
direction =
Ref( direction, - delta );
Hi =
Ref( PFH, -delta ) + Box / 2;
Lo =
Ref( PFL, -delta ) - Box / 2;
Cl =
IIf( direction == 1, Hi, Lo );
Op =
IIf( direction == 1, Cl - Box, Cl + Box );
Graphcolor =
IIf( direction == 1, ParamColor( "X_Color", colorBrightGreen ),
ParamColor
( "O_Color", colorDarkRed ) );
PlotOHLC
( Op, Hi, Lo, Cl, "", GraphColor, stylePointAndFigure | styleNoLabel, 0, 0, shiftChart );
PlotOHLC
( Op, Hi, Lo, Cl, "", GraphColor, stylePointAndFigure | styleNoLabel, 0, 0, shiftChart );
Last =
Ref( LastValue( C ), -( BarCount - 1 ) );
Plot
( Last, "", colorDarkRed, styleNoLine | styleDots, 0, 0, shiftLastClose );
// selected value
Value =
IIf( direction > 0, SelectedValue( Hi ) - box / 2, SelectedValue( Lo ) + box / 2 );




















_SECTION_BEGIN
("J's SRI CHAKRA - PH: [protected]");
//{J's SRI CHAKRA}
//{Buy}
x1=
5; x2=4; x3=3; x4=2; x5=1; x6=.5;
//{Lowest price stock <5}
AA=
IIf(C<5, Cross(C, ValueWhen(Peak(H, x1, 1) !=Ref(Peak(H, x1, 1), -1), H, 1)),
//{Price between 5 AND 20}
IIf
(C>5 AND C<20, Cross(C, ValueWhen(Peak(H, x2, 1) !=Ref(Peak(H, x2, 1), -1), H, 1)),
//{Price between 20 AND 70}
IIf
(C>20 AND C<70, Cross(C, ValueWhen(Peak(H, x3, 1) !=Ref(Peak(H, x3, 1), -1), H, 1)),
//{Price between 70 AND 150}
IIf
(C>70 AND C<150, Cross(C, ValueWhen(Peak(H, x4, 1) !=Ref(Peak(H, x4, 1), -1), H, 1)),
//{Price between 150 AND 300}
IIf
(C>150 AND C<300, Cross(C, ValueWhen(Peak(H, x5, 1) !=Ref(Peak(H, x5, 1), -1), H, 1)),
//{Price over 300}
Cross
(C, ValueWhen(Peak(H, x6, 1)!=Ref(Peak(H, x6, 1), -1), H, 1)))))));
//{Sell }
x1=
5; x2=4; x3=3; x4=2; x5=1; x6=.5;
//{Lowest price stock <5}
BB=
IIf(C<5, Cross(ValueWhen(Trough(L, x1, 1) !=Ref(Trough(L, x1, 1), -1), L, 1), C),
//{Price between 5 AND 20}
IIf
(C>5 AND C<20, Cross(ValueWhen(Trough(L, x2, 1) !=Ref(Trough(L, x2, 1), -1), L, 1), C),
//{Price between 20 AND 70}
IIf
(C>20 AND C<70, Cross(ValueWhen(Trough(L, x3, 1) !=Ref(Trough(L, x3, 1), -1), L, 1), C),
//{Price between 70 AND 150}
IIf
(C>70 AND C<150, Cross(ValueWhen(Trough(L, x4, 1) !=Ref(Trough(L, x4, 1), -1), L, 1), C),
//{Price between 150 AND 300}
IIf
(C>150 AND C<300, Cross(ValueWhen(Trough(L, x5, 1) !=Ref(Trough(L, x5, 1), -1), L, 1), C),
//{Price over 300}
Cross
(ValueWhen(Trough(L, x6, 1)!=Ref(Trough(L, x6, 1), -1), L, 1), C))))));
Color=
IIf(BarsSince(AA)>BarsSince(BB), colorRed, IIf(RSI()>70, colorCustom11, colorDarkGreen));
///// Trailing Stop Module /////
P6=
Param("Trailing Stop Risk", 5, 2, 3.5, 0.1);
P7=
Param("Trailing Stop LookBack", 14, 5, 25, 1);
P8=
Param("Trailing Stop PrevLow Switch", 0, 0, 1, 1);
PrevLow=
IIf(P8==1, Ref(C, -TroughBars(C, 5, 1)), Null);
//Plot(PrevLow, "", colorRed);
//Position sizing//
MyTotalPort =
Param("MyTotalPort", 1000000, 10000, 10000000, 100000);
AcceptableRisk =
Param("AcceptableRisk", 0.5, 0.1, 3, 0.1);
BarsFromStart =
BarsSince(Cross(AA, BB)AND Ref(Color, -1)==colorRed) ;
InitialStopLoss =
Ref( H - P6*ATR(P7), -BarsFromStart);
PositionSizing =
0.01*AcceptableRisk*MyTotalPort/( C - InitialStopLoss );
PPP =
IIf( HHV(H - P6*ATR(P7), BarsFromStart+1) <C, HHV(H - P6*ATR(P7), BarsFromStart+1), Null);
Plot
( PPP, "", colorYellow, 1);

//PlotShapes(shapeHollowDownArrow*Cross(Ref(HHV(H - P6*ATR(P7), BarsFromStart+1), -1), C), colorRed, 0, H, Offset=-43);
Title
=Name()+" "+Date()+" "+EncodeColor(colorWhite)+"J's SRI CHAKRA - Ph: [protected]"+EncodeColor(colorCustom11)+" Vol="+NumToStr(Volume, 1.2)+" "+EncodeColor(1)+"Position Sizing ( " +AcceptableRisk+ "% Risk ) = " + WriteIf(color==colorLime, NumToStr(PositionSizing, 1.0), "0")+
EncodeColor
(colorYellow)+"nO="+O+EncodeColor(colorCustom3)+" Pk-Tgh Exit"+EncodeColor(colorCustom3)+" ATR Trailing Exit"+EncodeColor(colorOrange)+" RSI Exit"+EncodeColor(colorCustom9)+" ADX = "+ADX()+EncodeColor(colorWhite)+"nH="+H+"nL="+L+"n... C+""+"nchange= "+NumToStr((Ref(C, -1)-Close), 1.2) +
" "
;
//PlotShapes( AA*shapeHollowUpTriangle, colorCustom9, 0, L-0.2);
//PlotShapes( BB*shapeHollowDownTriangle, colorDarkRed, 0, H+0.2);
GraphXSpace
=3;
_SECTION_END
();









Sell
= ppp < 0 AND Ref(ppp, -1) > 1 ;
Buy
= ppp > 0 AND Ref(ppp, -1) < 1 ;
//Filter=Buy OR Sell;
Sell
=ExRem(Sell, Buy);
Buy
=ExRem(Buy, Sell);
" >>>>> "
+ ppp ;
" >>>>> "
+ C ;
PlotShapes
(IIf( Sell, shapeDownTriangle, shapeNone), colorRed, 0, High, Offset=-20);
PlotShapes
(IIf( Buy, shapeUpTriangle, shapeNone), colorGreen, 0, Low, Offset=-20);
AlertIf
( Buy, "SOUND C:WindowsMediaDing.wav", "Audio alert", 2 );
AlertIf
( Sell, "SOUND C:WindowsMediaDing.wav", "Audio alert", 2 );





//=====================================================================
//background stock name (works only on Amibroker version 5.00 onwards.
//=====================================================================
_SECTION_BEGIN
("Name");
GfxSetOverlayMode
(1);
GfxSelectFont
("Tahoma", Status("pxheight")/10 );
GfxSetTextAlign
( 6 );// center alignment
//GfxSetTextColor( ColorRGB( 200, 200, 200 ) );
GfxSetTextColor
( ColorHSB( 42, 42, 42 ) );
GfxSetBkMode
(0); // transparent
GfxTextOut
( Name(), Status("pxwidth")/2, Status("pxheight")/12 );
GfxSelectFont
("Tahoma", Status("pxheight")/12 );
GfxTextOut
( "SRI CHAKRA", Status("pxwidth")/2, Status("pxheight")/3 );
GfxSelectFont
("Tahoma", Status("pxheight")/20 );
GfxTextOut
( "[protected]@yahoo.co.in", Status("pxwidth")/2, Status("pxheight")/2 );
_SECTION_END
();
//==============================================================================...
Hello Friends.,

Jeevan lal writing.

On the outset, I would like to clarify that its not my intention to make cheap money by cheating people.

I started the service to help investors who suffer from losses in trading.

Some formulas given here may not be working fine - may be due to the timing changes happened at exchanges or time frame in using the chart is not correct or they may be outdated because changing trading strategies over a period of time.

Anyhow, people who have complaints could have directly contacted me and could have taken personal advise - I am really ready to help.

Moreover, I would like to say that Mr. Hemachand is also one of my good clients and not my son or not Mr. ramakrishnan as mentioned here.

There are allegations on leading local and International companies also which have not been responded because the product what they sell is for some specific usages . It does not mean that their products are not trustworthy.

Even after giving good remarks by other people some people here make bad remarks. I am very thankful to them because they are the ones who make us to deliver more good services. I really appreciate them but at the same time I request them to contact me for guidance or in other words I will take guidance from them.

Some new sample charts are attached here. Please go through them and also visit : www.srichakracharts.blogspot.in

We are at your service.

AFL Fraud Mr.Jeevanlal - Comment #1597018 - Image #0
AFL Fraud Mr.Jeevanlal - Comment #1597018 - Image #1
AFL Fraud Mr.Jeevanlal - Comment #1597018 - Image #2
AFL Fraud Mr.Jeevanlal - Comment #1597018 - Image #3
Jeevanlal I know about the year. Eaten by deceiving others to give to his family. Like this man, sit on a network. They give people the money multiplier, software has been highly profitable signals Wash mind will do.Go and see quikr.com month'd say 40% return. People just need to be cutarip.

He is an International Dupakoor. I'm not complaining about that man. In general, earning the deceiving others, do share market deal. The house is on the survival of women give convenes. If you would like Jeevanlaal mend men, Sandals, beaten.
Those who survive are deceiving others chose to take on the sharemarket after the first MLM.

Jeevan on the partners, we are making plans to take police action. Give victims and contact number. Such men should not ignore. His partner is a family member at karur road'd say 3% gurantee retrun month. Many people consume all of their money off of providing brokerage.
Therealdeal13's reply, Dec 10, 2016
Post your name bravely then you big dubakoor.

First thing MR. Jeevanlal doesn't know anyone in Karur. From this itself it is evident you are a big fraud.

I got a guidance chart from them and it seems to be working very well for my trading.

All systems have accuracy differences and none can exactly predict the market. No one can. But Mr. Jeevanlal was kind enough to offer support even though it was late night and he was not well. Just because I had doubts.

Instead of spreading false news go learn something. Such unprofessional behavior.
Hellow Jeevan,

Show me is any one made money in stock market. Don't cheat people. First I have to arrest you help of Coimbatore city police team.
It should be a lesson for those like you. Deceive others for capituvatir.
Therealdeal13's reply, Dec 10, 2016
First you answer the question. You went to him only to earn more money thinking you will be the king of stock market know.

To people reading ...
I got a guidance chart from srichakra and it seems to be working very well for my trading.

All systems have accuracy differences and none can exactly predict the market. No one can. But Mr. Jeevanlal was kind enough to offer support even though it was late night and he was not well. Just because I had doubts.

Instead of spreading false news go learn something. Such unprofessional behavior.

U will be the first one caught by police as u have lot of black money and want to earn more...
I want to kick the person who started this thread. He is just here to promote his own company by lodging a complaint against Mr.jeevanlal all the others CT spotware nse user who lodged initial complaint are all in this together . But look at how Mr.jeevanlal replied. In a professional manner.

I got a guidance chart from them and it seems to be working very well for my trading.

All systems have accuracy differences and none can exactly predict the market. No one can. But Mr. Jeevanlal was kind enough to offer support even though it was late night and he was not well. Just because I had doubts.

Instead of spreading false news go learn something. Such unprofessional behavior.

Post your Comment

    I want to submit Complaint Positive Review Neutral Comment
    code
    By clicking Submit you agree to our Terms of Use
    Submit

    Contact Information

    AMIBROKER CHART AFL SRI CHAKRA BUY & SELL
    Bihar
    India
    File a Complaint