Quantcast
Channel: Traderji.com
Viewing all 10287 articles
Browse latest View live

New at tj !!

$
0
0
Hi ppl,
I'm a equity research analyst, Fundamental, from kolkata.
Am new to the forum.
would love to share/seek guidance on new and existing ideas from our senior members,

rgds.
Vaibhav

sum gud afl components code

$
0
0
hello guys here are sum afl codes which i have extracted from the bunch of useless afl s ,these are not trading systems but you can see it as extra accessories for any afl .you can copy this individual codes to any afl u want ,enjoy:)


1- this code will plot the trailling stoploss line .


res=HHV(Hahigh,4);
sup=LLV(Halow,4);
tsl=IIf(ValueWhen(IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0))!=0,IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0)),1)==1,sup,res);

Plot(tsl, _DEFAULT_NAME(), colorWhite, styleStaircase);


2- this code will plot targets in %terms with dashboard specifying all details ,here there is sum problem sl which is displayed in dashboard rest all is fine.


NW[0] = 0;
NW[BarCount-1] = Null;
for(i=BarCount-1;i>1;i--)
{
if(Buy[i] == 1)
{
entry = H[i];
sig = "BUY";
sl = Ref(NW,-1);
tar1 = entry + (entry * .0050);
tar2 = entry + (entry * .0092);
tar3 = entry + (entry * .0179);

bars = i;
i = 0;
}
if(Sell[i] == 1)
{
sig = "SELL";
entry = L[i];
sl = Ref(NW,-1);
tar1 = entry - (entry * .0050);
tar2 = entry - (entry * .0112);
tar3 = entry - (entry * .0212);


bars = i;
i = 0;
}
}
Offset = 20;
Clr = IIf(sig == "BUY", colorLime, colorRed);
ssl = IIf(bars == BarCount-1, NW[BarCount-1], Ref(NW, -1));
sl = ssl[BarCount-1];

Plot(LineArray(bars-Offset, tar1, BarCount, tar1,1), "", Clr, styleLine|styleDots, Null, Null, Offset);
Plot(LineArray(bars-Offset, tar2, BarCount, tar2,1), "", Clr, styleLine|styleDots, Null, Null, Offset);
Plot(LineArray(bars-Offset, tar3, BarCount, tar3,1), "", Clr, styleLine|styleDots, Null, Null, Offset);



messageboard = ParamToggle("Message Board","Show|Hide",1);
if (messageboard == 1 )
{
GfxSelectFont( "Tahoma", 13, 100 );
GfxSetBkMode( 1 );
GfxSetTextColor( colorWhite );

if ( sig =="BUY")
{
GfxSelectSolidBrush( colorBlue ); // this is the box background color
}
else
{
GfxSelectSolidBrush( colorRed ); // this is the box background color
}
pxHeight = Status( "pxchartheight" ) ;
xx = Status( "pxchartwidth");
Left = 1100;
width = 310;
x = 5;
x2 = 290;

y = pxHeight;

GfxSelectPen( colorGreen, 1); // broader color
GfxRoundRect( x, y - 98, x2, y , 7, 7 ) ;
GfxTextOut( ( "bunti_k23"),13,y-100);
GfxTextOut( (" "),27,y-100);
GfxTextOut( ("Last " + sig + " Signal came " + (BarCount-bars-1) * Interval()/60 + " mins ago"), 13, y-80) ; // The text format location
GfxTextOut( ("" + WriteIf(sig =="BUY",sig + " @ ",sig + " @") + " : " + entry), 13, y-60);
GfxTextOut( ("Trailing SL : " + sl + " (" + WriteVal(IIf(sig == "SELL",entry-sl,sl-entry), 2.2) + ")"), 13, y-40);
/*GfxTextOut( ("TGT:1 : " + tar1), 13, y -80);
GfxTextOut( ("TGT:2 : " + tar2), 13,y-60);
GfxTextOut( ("TGT:3 : " + tar3), 13,y-40);*/
GfxTextOut( ("Current P/L : " + WriteVal(IIf(sig == "BUY",(C-entry),(entry-C)),2.2)), 13, y-22);

}


3- this code will plot ribbon which is at the bottom on your chart.


_SECTION_BEGIN("trending ribbon");
uptrend=PDI()>MDI() AND MACD()>Signal();
downtrend=MDI()>PDI() AND Signal()>MACD();
Plot( 2, /* defines the height of the ribbon in percent of pane width */"ribbon",
IIf( uptrend, colorGreen, IIf( downtrend, colorRed, 0 )), /* choose color */
styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
_SECTION_END();


4- this code will plot magnified market price.

_SECTION_BEGIN("Magnified Market Price");
FS=Param("Font Size",30,30,100,1);
GfxSelectFont("Arial", FS, 700, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor( ParamColor("Color",colorWhite) );
Hor=Param("Horizontal Position",350,800,800,800);
Ver=Param("Vertical Position",50,27,27,27);
GfxTextOut(""+C,Hor+250 , Ver-53 );
YC=TimeFrameGetPrice("C",inDaily,-1);
DD=Prec(C-YC,2);
xx=Prec((DD/YC)*100,2);
GfxSelectFont("Arial", 12, 700, italic = False, underline = False, True );
GfxSetBkMode( colorWhite );
GfxSetTextColor(ParamColor("Color",colorYellow) );
GfxTextOut(""+DD+" ("+xx+"%)", Hor+250, Ver-1 );
_SECTION_END();


5- this code will plot higher highs hl lh and ll.


//This Section is For HH HL LH LL //
Q = Param( "% Change", 0.6, 0.1, 10, 0.1 );
Z = Zig( C , q ) ;
HH = ( ( Z < Ref( Z, -1 ) AND Ref( Z, -1 ) > Ref( Z, -2 ) ) AND (Peak( z, q, 1 ) > Peak( Z, q, 2 ) ) );
LH = ( ( Z < Ref( Z, -1 ) AND Ref( Z, -1 ) > Ref( Z, -2 ) ) AND (Peak( Z, q, 1 ) < Peak( Z, q, 2 ) ) );
HL = ( ( Z > Ref( Z, -1 ) AND Ref( Z, -1 ) < Ref( Z, -2 ) ) AND (Trough( Z, q, 1 ) > Trough( Z, q, 2 ) ) );
LL = ( ( Z > Ref( Z, -1 ) AND Ref( Z, -1 ) < Ref( Z, -2 ) ) AND (Trough( Z, q, 1 ) < Trough( Z, q, 2 ) ) );
GraphXSpace = 5;
dist = 0.5 * ATR( 20 );

for ( i = 0; i < BarCount; i++ )
{
if ( HH[i] )
PlotText( "H TOP ", i, H[ i ] + dist[i], colorYellow );

if ( LH[i] )
PlotText( "L TOP", i, H[ i ] + dist[i], colorYellow );

if ( HL[i] )
PlotText( "H Bottom", i, L[ i ] - dist[i], colorYellow );

if ( LL[i] )
PlotText( "L Bottom", i, L[ i ] - dist[i], colorYellow );

}



6- this code will plot hekeinshi candles synchronised with moving average (can be varied from parameter window)


/*
Heikin-Ashi(Koma-Ashi) with Moving Average Type
*/
SetChartOptions(2, chartWrapTitle);

// Calculate Moving Average
MAPeriod = Param("MA Period", 15, 1, 100);
MAOpen = EMA(Open, MAPeriod);
MAHigh = EMA(High, MAPeriod);
MALow = EMA(Low, MAPeriod);
MAClose = EMA(Close, MAPeriod);

HaClose = (MAOpen + MAHigh + MALow + MAClose) / 4;
HaOpen = AMA(Ref(HaClose, -1), 0.5);

// for graph collapse
for(i = 0; i <= MAPeriod; i++) HaClose[i] = Null;
/*
// same
// HaOpen = (Ref(HaOpen, -1) + Ref(HaClose, -1)) / 2;
HaOpen[ 0 ] = HaClose[ 0 ];
for(i = 1; i < BarCount; i++) {
HaOpen[i] = (HaOpen[i - 1] + HaClose[i - 1]) / 2;
}
*/

HaHigh = Max(MAHigh, Max(HaClose, HaOpen));
HaLow = Min(MALow, Min(HaClose, HaOpen));

// outs comments
"BarIndex = " + BarIndex();
"Open = " + Open;
"High = " + High;
"Low = " + Low;
"Close = "+ Close;
"HaOpen = " + HaOpen;
"HaHigh = " + HaHigh;
"HaLow = " + HaLow;
"HaClose = "+ HaClose;

// Plot graphs
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} HaOpen %g, HaHigh %g,
HaLow %g, HaClose %g (%.1f%%) {{VALUES}}",
HaOpen, HaHigh, HaLow, HaClose, SelectedValue(ROC( HaClose, 1))));
PlotOHLC(HaOpen, HaHigh, HaLow, HaClose, _DEFAULT_NAME(), ParamColor("Color",
colorBlack), styleCandle);

_SECTION_BEGIN("Colour Tap");
SetChartBkGradientFill( ParamColor("BgTop", ColorRGB( 172,172,172 )),

ParamColor("BgBottom", ColorRGB( 172,172,172 )),ParamColor("titleblock",ColorRGB( 172,172,172 )));
_SECTION_END();


7- this code will plot ema line.

e45 = EMA(C,45);
Plot(e45,"E45",colorGreen);

8- this code will plot donchian channels

// Plots a 20 period Donchian channel

pds=20;
DonchianUpper =HHV(Ref(H,-1),pds);
DonchianLower = LLV(Ref(L,-1),pds);
DonchianMiddle = (DonchianUpper+DonchianLower)/2;


Plot(DonchianUpper,"DU",colorBlue,styleLine);
Plot(DonchianMiddle,"DM",colorGreen,styleLine);
Plot(DonchianLower,"DL",colorRed,styleLine);

Steady 50K income per month

$
0
0
Hi,
Could anyone tell me how much investment is required to get steady 50K / per month income through mutual funds?

Thanks.

understanding the trading mind from neuro science and psychaitry

$
0
0
I want this thread to be a place to discuss about brain from the perspective of science.

We can talk about anything related to brain and behavior but from the perspective of neuro science and psychiatry. We can talk about DNA, genes, brain chemistry, hormones, brain structure, neuro genetics, implications of personality types/disorders in trading etc etc. but kindly preserve popular/motivational quotes and pics for other threads.

I have always believed there is a very strong genetic component to trading success and wanted to explore it more here!

------

Recently I was watching an excellent talk on ADHD and ADD (attention deficit disorder):

http://m.youtube.com/watch?v=LyDliT0GZpE

I have been constantly falling off the rails of trading discipline, may be ADD is the culprit!

Any Good broker for options

$
0
0
I would trade 100 -140 lots (buy and sell ) nifty every series. All positions would be spreads (every buy will have a sell and vice versa) and carry forwards. There is no intraday trading that will be done. Any brokers willing to give sell 1 nifty of margin less than 8000 Rs. Offcourse MTM will be maintained.

Good Health Clinic for Asthma Treatment

$
0
0
Which is a good clinic to go to for the treatment of asthma?

esignal users........does esignal provide histor ieod data for stock,index options?

$
0
0
sorry for posting in the wrong section.....so am deleting the question
pls accept my sincerest apologies mods..
am reposting it in the software section

esignal users........does esignal provide histor ieod data for stock,index options?

$
0
0
i know many will point out that its a question meant for esignal support. actually i already tried asking them, but their response was ambiguous and i felt the support rep was saying something just for the heck of it. so if any esignal user comes across this question, please answer it.

am a premium seller so i need ieod data of option contracts(of all the underlyings). am thinking esignal is the best coz they r reputed for their data quality. the thing is its a bit expensive and i would like to know if i cud get options data. its much easier for a data vendor to provide futures historical data, but in the case of options one single underlying can have many strikes per month and having data for first,mid and far month contracts all strikes all underlyings for the last 5-6 yrs is daunting


also,i have another question: does esignal allow historical data(not realtime data. amibroker has an esignal plugin but it works only for realtime data, i think) to be exported into csv/excel format, so that i can use it in amibroker

Can Subbrokers provide trading calls

$
0
0
Hello everyone,
Can someone also advise if a sub broker can i) provide trading calls & ii) Charge for the service?

TaiChi Price Action - Intraday Trading Strategy

$
0
0
Dear Friends,



Happy Ganesh Puja to all. May the god of wisdom and remover of all obstacles make your trading path smooth, enjoyable. Wishing you all good and prosperous trading days ahead.

Guys,

Starting this thread to share my intraday price action trading strategy which I have been trading with quite successful results.

I got introduced to price action trading by Jagankrish and Gurmy from traderji forum. Many thanks to them. My first systematic learning started from Lance Begg's YTC book series. And last year I was applying the same method to trade intraday. I must say, the YTC series is a very good and useful book to get started with price action. Through the course of time I have blended and developed those system to suit my style and personality.

My learning on trading started with Traderji, and is still continuing. And now this is time to give something back to this forum. I hope traders who are applying only price actions in their intraday trading will find this thread useful.

Regards
Taiki

pinnacle financial services

$
0
0
hello tradeji, thanks for add me your community..

any help

$
0
0
i tried to put prices on rsi indicator
and every thing goes perfect
but one thing i cant do it
i need to put price narrow to peaks and trough
any help ????
....................................
_SECTION_BEGIN("RSI styleClipMinMax");
SetChartOptions(0,0,chartGrid20|chartGrid50|chartG rid80);
periods = Param( "Periods", 12, 1, 200, 1 );
Plot( RSI( periods), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
maxClip = Param( "maxClip", 80, 1, 100, 1 );
minClip = Param( "minClip", 20, 1, 100, 1 );
r = RSI(periods);
PlotOHLC( r,r,50,r, "", IIf( r > 50, colorRed, colorBrightGreen ), styleCloud | styleNoLabel | styleClipMinMax, minClip, maxClip );
Overbought = 80 ;
Oversold =20 ;
Center = 50 ;

Plot(Overbought, "",colorRed) ;
Plot(Oversold, "",colorGreen) ;
Plot(Center, "",colorBlack, styleDashed) ;

_SECTION_END();


_SECTION_BEGIN("Show Values at H&L");

n=Param("Values back",20,1,200,1);
p=Param("zig %",5,1,100,0.1);
fraction1= IIf(StrRight(Name(),3) == "",1,4);
fraction2= IIf(StrRight(Name(),3) == "",1,4);

ero = Param("ATR multiple", 2.8, 0.5, 200, 0.1 )*Param("ATR period", 10, 3, 50 );
ss=Peak(r,ero);
s=Trough(r,ero);
dist=IIf(r>Ref(ss,-1),1,IIf(r<Ref(s,-1),-3,0.5));
for( i =0; i < n; i++)
{
PlotText(""+LastValue(Peak(C,p,i),True),BarCount-1-LastValue(PeakBars(C,p,i)),LastValue(fraction1,Tru e)+LastValue(Peak(r,fraction1,i),False),ParamColor ("HIGHColor", colorBrightGreen ));
PlotText(""+LastValue(Trough(C,p,i),True),BarCount-1-LastValue(TroughBars(C,p,i)),LastValue(Trough(r,fr action2,i),False)-LastValue(fraction2,True),ParamColor("LOWColor", colorBrightGreen ));
}


_SECTION_END();

Concealed Fibo Trading

$
0
0
In past one week, I have seen some strange behavior for low cap stocks, around fibo levels and discovered a nice way to trap around 1% of my capital daily. Although i have been working over it for past 7 months but touched right string only in past week. so far i have done paper trades, from Monday I will begin real trades. I have started this thread to incorporate all my trades for future learning purpose.
I will post trades and reasons for the trade so that readers too get benefitted.
I have done much labor and seen every qualified stock daily for 10 times so its obvious that there will be different perceptions between me & you all.
Huge share of credit to Mr. Raj (HealthRaj) as he always motivated me (and all) to have unique system and then sticking to that system as well.
Second big share to Mrs. Khushi (khushi00) for her stubborn suppport on counter trades against trend.
She always insisted to have reverse trades in low cap stocks as we can never trap in-trend trades in small cap as we'll never get right price.
We can never guess a major trend in small cap exactly as its always started by big players, but we can enter at some falls(if trend is up) and rises(if trend is down) for trapping a small profit of 1%
Its easy as normal range of such stocks is around more than 8%.
There is no easy trading at all so you all have to do your share of homework.
Visual inspection is ultimate truth of trading, No system can generate 100% profit at 100% times.
In last, I will share 80% Knowledge transfer, if it pinches you then keep away from this thread.

ATR Volatility trading system

$
0
0
Hello Friend,

You know about ATR Volatility trading system is available on marketcalls. This system is made for daily base ( only go for long , no short - cover ) . I have slightly modified and added new condition here . You can download here and checkout backtest report of nifty spot.

Attachment 19903



Attachment 19904



Quote:


//------------------------------------------------------------------------------
//
// ATR trading system for short terms tradings. You can use it with Absolute
// Strength Index for confirmation of signals.
//
//------------------------------------------------------------------------------

_SECTION_BEGIN("ATR Volatility Revised Edition");


GraphXSpace = 15;

SetChartOptions(0,chartShowArrows|chartShowDates);

SetChartBkColor(ParamColor("bkcolor",ColorRGB(0,0, 0)));

GfxSetBkMode(0);

GfxSetOverlayMode(1);

SetBarFillColor(IIf(C>O,ParamColor("Candle UP Color", colorGreen),IIf(C<=O,ParamColor("Candle Down Color", colorRed),colorLightGrey)));

Plot(C,"\nPrice",IIf(C>O,ParamColor("Wick UP Color", colorDarkGreen),IIf(C<=O,ParamColor("Wick Down Color", colorDarkRed),colorLightGrey)),64,0,0,0,0);

///////////////////////////////////////////////////////////////
R = RSI(9);
SK = StochK(10, 3);
SD = StochD(10, 3, 3);
MH = MACD(12, 26) - Signal(12, 26, 9);

//Conditions for Buying


Cond1 = ValueWhen(C,O<C);
Cond2 = R > 53;

Cond3 = SD < 100 AND SD > Ref(SD, -1);
Cond4 = MH > 0 OR (MH < 0 AND MH > Ref(MH, -1));

//Conditions for Selling

Cond5 = ValueWhen(C,O>C);

Cond6 = R < 40;

Cond7 = SD > 20 AND SD < Ref(SD, -1);
Cond8 = MH < 0 OR (MH > 0 AND MH < Ref(MH, -1));

Buy1 = Cover= Cond1 AND Cond2 AND Cond3 AND Cond4 ;
Sell1 = Short= Cond5 AND Cond6 AND Cond7 AND Cond8 ;


/////////////////////////////////////////////////////////////////

n=Param( "period", 15, 5 , 20, 1 );
k=Param( "factor", 0.9, 0.5 , 2.5, 0.1 );

f=ATR(n);

/*R Resistance */
R[0] = C[0];
/*S Support */
S[0] = C[0];

for( i = n+1; i < BarCount; i++ )
{

R[i]=R[i-1];
S[i]=S[i-1];
if (( S[i-1]<=C[i-1]) AND (C[i-1] <=R[i-1] ) AND (C[i-1]+k*f[i-1])<=RV)

R[i] = C[i-1]+k*f[i-1];

if (( S[i-1]<=C[i-1]) AND (C[i-1]<=R[i-1] ) AND (C[i-1]-k*f[i-1])>=SV)

S[i]= C[i-1]-k*f[i-1];






if ( C[i-1] >R[i-1] )
{
R[i] = C[i-1]+k*f[i-1];
S[i]= C[i-1]-k*f[i-1];
RV=R[i];
SV=S[i];
}
if ( C[i-1] <S[i-1] )
{
R[i] = C[i-1]+k*f[i-1];
S[i]= C[i-1]-k*f[i-1];
RV=R[i];
SV=S[i];

}


Buy=Close>R AND Buy1;
Sell=Close<S AND Sell1;

Cump=IIf(Close>R,1,0);
Vanz=IIf(Close<S,1,0);
}

Buy = ExRem( Buy, Sell );
Sell = ExRem( Sell, Buy );

iBuy = Flip( Buy, Sell );
iSell =Flip( Sell, Buy );



Plot(IIf(iSell,R,Null), "Rez:",colorRed,styleDots|styleNoLine);
Plot(IIf(iBuy,S,Null), "Sup:",colorGreen,styleDots|styleNoLine);

Short=Sell;

Cover=Buy;

Buy=ExRem(Buy,Sell); Sell=ExRem(Sell,Buy);
Short=ExRem(Short,Cover); Cover=ExRem(Cover,Short);

SetOption("AllowSameBarExit", False);
SetOption("AllowPositionShrinking", True);
SetOption("FuturesMode", True);
SetOption("InterestRate",0);
SetOption("MaxOpenPositions",1);
RoundLotSize= 2;
SetOption("MinShares",RoundLotSize);
SetOption("PriceBoundChecking",False);
SetOption("AccountMargin",True);
SetOption("ReverseSignalForcesExit",False);
SetOption("UsePrevBarEquityForPosSizing",True);
SetOption("GenerateReport",1);
SetOption("MaxOpenLong",1);
SetOption("MaxOpenShort",1);
PositionSize = C*RoundLotSize*50.5;


SetOption("RefreshWhenCompleted",True);


//End of Settings for Backtester




BuyPrice=ValueWhen(Buy,C);

SellPrice=ValueWhen(Sell,C);

ShortPrice=ValueWhen(Short,C);

CoverPrice=ValueWhen(Cover,C);





Title = EncodeColor(colorWhite)+ "ATR Volatility System code from www.marketcalls.in" + " - " + Name() + " - " + EncodeColor(colorRed)+ Interval(2) + EncodeColor(colorWhite) +

" - " + Date() +" - "+"\n" +EncodeColor(colorRed) +"Op-"+O+" "+"Hi-"+H+" "+"Lo-"+L+" "+

"Cl-"+C+" "+ "Vol= "+ WriteVal(V)+"\n"+

EncodeColor(colorLime)+

WriteIf (Buy , " GO LONG / Reverse Signal at "+C+" ","")+

WriteIf (Sell , " EXIT LONG / Reverse Signal at "+C+" ","")+"\n"+EncodeColor(colorYellow)+

WriteIf(Sell , "Total Profit/Loss for the Last Trade Rs."+(C-BuyPrice)+"","")+

WriteIf(Buy , "Total Profit/Loss for the Last trade Rs."+(SellPrice-C)+"","");



PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorGreen, 0, L, Offset=-40);

PlotShapes(IIf(Buy, shapeSquare, shapeNone),colorLime, 0,L, Offset=-50);

PlotShapes(IIf(Buy, shapeUpArrow, shapeNone),colorWhite, 0,L, Offset=-45);

PlotShapes(IIf(Short, shapeSquare, shapeNone),colorRed, 0, H, Offset=40);

PlotShapes(IIf(Short, shapeSquare, shapeNone),colorOrange, 0,H, Offset=50);

PlotShapes(IIf(Short, shapeDownArrow, shapeNone),colorWhite, 0,H, Offset=-45);

//Magfied Market Price

FS=Param("Font Size",30,11,100,1);

GfxSelectFont("Times New Roman", FS, 700, True );

GfxSetBkMode( colorWhite );

GfxSetTextColor( ParamColor("Color",colorGreen) );

Hor=Param("Horizontal Position",940,1,1200,1);

Ver=Param("Vertical Position",12,1,830,1);

GfxTextOut(""+C, Hor , Ver );

YC=TimeFrameGetPrice("C",inDaily,-1);

DD=Prec(C-YC,2);

xx=Prec((DD/YC)*100,2);

GfxSelectFont("Times New Roman", 11, 700, True );

GfxSetBkMode( colorBlack );

GfxSetTextColor(ParamColor("Color",colorYellow) );

GfxTextOut(""+DD+" ("+xx+"%)", Hor , Ver+45 );




_SECTION_END();
Download Report

Attached Images
File Type: png money99.in - 1.png (37.0 KB)
File Type: png 2.png (34.3 KB)

Forecasting Market Reversal

$
0
0
Hi

I came across a book A Unique Approach To Forecasting Market Reversal Points by Ivan Sargent on http:// www . amazon . com / Unique-Approach-Forecasting-Market-Reversal-ebook/dp/B007QODPVO/ref=cm_cr_pr_product_top

review looks very much interesting, any body has read this book ? Cost is Rs. 1774.60 want to know if book is really worth buying ? does it really help to forcast market reversal ?

Please share your views

members Blocking

$
0
0
Dear Moderators,
First things First ... Thanks a lot for lifting the ban on my id.
But, what was my mistake that my id was blocked.
How am I liable / responsible if few members post their e mail id's on my posts / threads, even after I publicly post / state that I'm willing to solve all their queries in this forum itself.
I did post my id (ONLY ONCE) long back, without realizing that it was a mistake and that was before my PM was activated. Even then, immediately, after recognizing my mistake, i had apologized for my mistake.
As much as it is acceptable that members have to follow the decorum and rules of the forum, how is it justified to revoke my id for the mistake of other members?
In between, though the ban is lifted, till now, none of my old threads / posts are not available / posted yet.

Thanks and regards,

AFL to identify day high till last bar

$
0
0
Hi,
Could you please help me to identify day high till last bar? So if current bar crosses day high and closes below then which is breakout failure. Please someone share AFL for this.

Thanks

Pips in wheelbarrow - Trading FX profitably

$
0
0
This thread is for those traders who want to trade FX on a long term ... Consistently and profitably ....
Few advice's flow from what I have read ... Most from my 7 years of trading experience ...
Will publish all the indicators that I follow over a period of time ...
Questions ... Doubts ... are always all ways appreciated ...
Let us make pips in wheelbarrow ...
:clap::clap::clap:

thanks to mtraderji

$
0
0
I buy and sell stocks on the same day and I also buy,hold and sell stocks on the SBICAQPSECS. I am happywith the dealings with them.
BUT I have one small question. I do not understand why they charge a different brokerage on the intraday transaction on some stocks 5 paise ,on some 6 paise on some 9 paise It becomes very difficult to calculate. Why don't they have a standard brokerage charge on all stocks.they can charge 7 paise for all stocks
Please help me solve this problem thanks once again

Prevous day close and low

$
0
0
Buy = Open == Low;
Sell = Open == High;
Noise = High > Close;
AddColumn(Open,"Open");
AddColumn(Close,"Close");
AddColumn(High,"High");
AddColumn(Low,"Low");
Filter= (Buy OR Sell) AND Noise;
AddColumn(IIf(Buy,Open,Null)," open=low ", 6.2,1.2,colorGreen);
AddColumn(IIf(Sell,Open,Null)," open= high ",6.2,1.2,colorOrange);

can anyone please add previous low and previous close in this afl

thanks in advance
Viewing all 10287 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>