vendredi 30 septembre 2016

Bollinger band strategy

1)
imgur

2)
image upload no size limit



First bollinger band is a 20 period 1 deviation band.The 2nd is a 20 period 2 deviation band.You have to look for a at least two candles inside of the BB-1.If the next candle close above BB-1 ,then enter above the top of that candle for a long trade.Conformation can be taken by looking at the RSI(7 period),so that it is above 50 level.For a sell trade after two or more candles inside the BB-1,then if the next candle closes below the BB-1,enter below the bottom of that candle.The RSI reading should be below 50 level then.This strategy works in all time frames.
In the picture the 1st one is a long trade and the 2nd a sell trade..


Bollinger band strategy

Greetings to all

Greetings to all at Traderji,
I'm Adil Bhamgara from Nagpur,
though have been trading in shares for long ,Absolute novice new in the field of trading options, hope to be part of this family for long


Greetings to all

jeudi 29 septembre 2016

renko afl

Dear friends,

I have one afl renko system for amibroker but these afl not show buy or sell signal here i share these afl please try if any one can do these..

if buy candle show up arrow and if sell candle show sell arrow...

Code is below.....

_SECTION_BEGIN("kishor");
SetBarsRequired(100000,100000);
//------------------------------------------------------------------+
// Block 1 |
//------------------------------------------------------------------+
VR=ParamToggle("View Renko","Bricks|Lines/Bars",0);
FV=Param("Initial size volatility",5,5,5,5);
MV=Param("Method calculation volatility",0,0,2,1);
PeriodVol=Param("Period calculation volatility",14,2,100,1);
Multiplier=Param("Multiplier volatility",1,0.1,10,0.1);
MR=ParamToggle("Method Renko","floating|fixed",1);
SG=ParamToggle("Show gap","No|Yes",1);
CG=ParamColor("Colour show gap",11);
MaxBS=Param("Maximum size brick",0,0,10,0.1);
MinBS=Param("Minimum size brick",0,0,10,0.1);
RenkoUp=ParamColor("Colour Renko upwards",colorGreen);
RenkoDown=ParamColor("Colour Renko downwards",colorRed);
SB=ParamStyle("View bars",defaultval=styleCandle,mask=maskPrice);
color3=ParamColor("Colour bars",colorBlack);
History=Param("History size",50000,2,BarCount-1,1);
//------------------------------------------------------------------+
// Block 2 |
//------------------------------------------------------------------+
i=Max(BarCount-1-History,PeriodVol+1);
r=j=0;
direction=0;
iGapUp=iGapDown=0;
rOpen[0]=rHigh[0]=rLow[0]=rClose[0]=jUp=jDown=Open[i];
//-------------------------------------------------------------------
switch(MV)
{
case 0: Volatility=FV; break;
case 1: Volatility=ATR(PeriodVol)*Multiplier; break;
case 2: Volatility=StDev(Open,PeriodVol)*Multiplier; break;
}
BrickSize=Volatility[i-1];
//-------------------------------------------------------------------+
// Block 3 |
//-------------------------------------------------------------------+
while(i<=BarCount-1)
{
if(SG==1)
{
if(High[i-1]<Low[i])
{
iGapUp[i]=1;
}
else
{
if(Low[i-1]>High[i])
{
iGapDown[i]=1;
}
}
}
//-------------------------------------------------------------------
if(MR==0)
{
BrickSize=Volatility[i-1];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
}
//------------------------------------------------------------------+
// Block 4 |
//------------------------------------------------------------------+
if(direction==0)
{
if(Open[i]-rClose[r]>BrickSize)
{
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
direction=1;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
continue;
}
//-------------------------------------------------------------------
else
{
if(rClose[r]-Open[i]>BrickSize)
{
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
direction=2;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
continue;
}
}
}
//------------------------------------------------------------------+
// Block 5 |
//------------------------------------------------------------------+
else
{
if(direction==1)
{
if(rOpen[r]-Open[i]>BrickSize)
{
r++;
rOpen[r]=rOpen[r-1];
rHigh[r]=rOpen[r];
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
direction=2;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
continue;
}
//-------------------------------------------------------------------
else
{
while(Open[i]-rClose[r]>BrickSize)
{
r++;
rOpen[r]=rClose[r-1];
rLow[r]=rOpen[r];
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
}
}
}
//------------------------------------------------------------------+
// Block 6 |
//------------------------------------------------------------------+
else
{
if(direction==2)
{
if(Open[i]-rOpen[r]>BrickSize)
{
r++;
rOpen[r]=rOpen[r-1];
rLow[r]=rOpen[r];
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
direction=1;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
continue;
}
//-------------------------------------------------------------------
else
{
while(rClose[r]-Open[i]>BrickSize)
{
r++;
rOpen[r]=rClose[r-1];
rHigh[r]=rOpen[r];
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
}
}
}
}
}
//------------------------------------------------------------------+
// Block 7 |
//------------------------------------------------------------------+
if(VR==1)
{
jOpen[j]=Open[i];
jHigh[j]=High[i];
jLow[j]=Low[i];
jClose[j]=Close[i];
//-------------------------------------------------------------------
if(direction==1)
{
jUp[j]=rClose[r];
jDown[j]=rOpen[r];
color2[j]=color[r];
}
else
{
if(direction==2)
{
jUp[j]=rOpen[r];
jDown[j]=rClose[r];
color2[j]=color[r];
}
}
j++;
}
i++;
}
//------------------------------------------------------------------+
// Block 8 |
//------------------------------------------------------------------+
if(VR==1)
{
delta=BarCount-j;
jOpen=Ref(jOpen,-delta);
jHigh=Ref(jHigh,-delta);
jLow=Ref(jLow,-delta);
jClose=Ref(jClose,-delta);
jUp=Ref(jUp,-delta);
jDown=Ref(jDown,-delta);
color2=Ref(color2,-delta);
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat(" - Open %g, Hi %g, Lo %g, Close %g (%.1f%%) ", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
PlotOHLC(jOpen,jHigh,jLow,jClose,"SRI",color3,SB);
Plot(jUp,"Up",color2,styleThick);
Plot(jDown,"Down",color2,styleThick);
}
//-------------------------------------------------------------------
else
{
delta=BarCount-1-r;
rOpen=Ref(rOpen,-delta);
rHigh=Ref(rHigh,-delta);
rLow=Ref(rLow,-delta);
rClose=Ref(rClose,-delta);
color=Ref(color,-delta);
PlotOHLC(rOpen,rHigh,rLow,rClose,"SRI",color,style Candle);
}
_SECTION_END();


renko afl

Top Bottom style of trading- If I can Every one can

Hello all
I have posted this thread under AMIBROKER Section because this is where I spent last 8 years.

The purpose of this thread is to motivate one and all. If I can do it, everyone can.

I will be happy even if one person understands this thread and change happens to him

DONT ASK FOR TRADING AFLS WHICH GIVES BUY SELL SIGNALS. Instead learn about the logics of trading and you yourself create a trading system which will suit your type of trading.

No BUY SELL AFL will make you money. The way you use the AFL will make money. And moreover the AFL alone will not make money.

I myself started trading in 2009, like any other trader started trading without any knowledge and burnt my hands. I did not want to QUIT.
So I started analyzing why it is so difficult to earn. Then one of my friend told that there is a known person to him who teaches TA very well.

He was the person who gave me insight about TA. He gave me Amibroker for 10K and gave me an indicator. But that did not change my fortunes.
Then I realized trading is just more than an indicator.

Then the real good thing happened to me, I joined TRADERJI.

I started searching for Holy Grail Indicator till late night, sometimes even till 5 AM. It only leads to a collection AFLS. Today I will be having more than 20 thousand afls.
But all those afls gave me some insight about the coding and the logic. When I joined I did not known even a fraction part of coding. Even today I don’t know coding,
but today I have little bit of knowledge about coding like editing, correcting, getting code from one AFL to other.

These things happened because of experts like Kelvinhand, johnypareek, detwo, happy sing, mastermind and many more experts.
All these experts where there when one really needed. I sincerely thank them all from bottom of my heart for all the help they have given.
A sincere request to all learning something about coding if you are really interested to stay in trading

I am an INTRADAY Trader, because I know I can’t handle the pressure of overnight positions. Most of the afls which you will get in
net will not be helpful, because it will not fit into your trading style.

So I started creating afls on my own which will suit my kind of trading. As an intraday trader you have to be DOUBLY sure about the direction of the market.
That is the major part, even then that will not enough. You have to be almost at the beginning of the trend, else you will
be almost closing the positions where you entered (MOST OF THE TIMES).

After 8 years of my trial and error I have created an AFL which suits my type of trading.

I have developed an AFL which catches TOP and BOTTOM almost perfectly even in 1 MINUTE time frame. I have checked it in 1,3,5,7 Minutes time frame

My AFL will help me to enter at the top and bottom of the markets even in 1 minute trading. BUT I DONT DO THAT. I will trade only in the TREND DIRECTION,
Say if it is UP trend I will take LONG Calls only until the direction of the market is intact.

So this way I happy with my trading and to all of you I am 95% accurate in my trading.
I oddly make any loss trades. I am trading with this indicator for almost 3 months. I trade ONLY COMMODITIES (CRUDEMINI AND GOLDMINI)

The sole purpose of this thread is give confidence for everybody IF YOU TRY YOU WILL WIN

EXPERTS SAY ONE CANT ENTER THE TRADE AT THE TOP AND BOTTOM, but I differ from their view. That inspired me to go and create this AFL.

Attached the image of the AFL, there are many arrows in the AFL, but I know which one to consider and which one to reject

ANY AFL or logic which adds to 95% success of AFL will be of great use.

Awaiting for your feedback and comments


Regards
LetsWIN

Attached Images
File Type: png Untitled.png (63.6 KB)


Top Bottom style of trading- If I can Every one can

renko afl

Dear friends,

I have one afl renko system for amibroker but these afl not show buy or sell signal here i share these afl please try if any one can do these..

if buy candle show up arrow and if sell candle show sell arrow...

Code is below.....

_SECTION_BEGIN("kishor");
SetBarsRequired(100000,100000);
//------------------------------------------------------------------+
// Block 1 |
//------------------------------------------------------------------+
VR=ParamToggle("View Renko","Bricks|Lines/Bars",0);
FV=Param("Initial size volatility",5,5,5,5);
MV=Param("Method calculation volatility",0,0,2,1);
PeriodVol=Param("Period calculation volatility",14,2,100,1);
Multiplier=Param("Multiplier volatility",1,0.1,10,0.1);
MR=ParamToggle("Method Renko","floating|fixed",1);
SG=ParamToggle("Show gap","No|Yes",1);
CG=ParamColor("Colour show gap",11);
MaxBS=Param("Maximum size brick",0,0,10,0.1);
MinBS=Param("Minimum size brick",0,0,10,0.1);
RenkoUp=ParamColor("Colour Renko upwards",colorGreen);
RenkoDown=ParamColor("Colour Renko downwards",colorRed);
SB=ParamStyle("View bars",defaultval=styleCandle,mask=maskPrice);
color3=ParamColor("Colour bars",colorBlack);
History=Param("History size",50000,2,BarCount-1,1);
//------------------------------------------------------------------+
// Block 2 |
//------------------------------------------------------------------+
i=Max(BarCount-1-History,PeriodVol+1);
r=j=0;
direction=0;
iGapUp=iGapDown=0;
rOpen[0]=rHigh[0]=rLow[0]=rClose[0]=jUp=jDown=Open[i];
//-------------------------------------------------------------------
switch(MV)
{
case 0: Volatility=FV; break;
case 1: Volatility=ATR(PeriodVol)*Multiplier; break;
case 2: Volatility=StDev(Open,PeriodVol)*Multiplier; break;
}
BrickSize=Volatility[i-1];
//-------------------------------------------------------------------+
// Block 3 |
//-------------------------------------------------------------------+
while(i<=BarCount-1)
{
if(SG==1)
{
if(High[i-1]<Low[i])
{
iGapUp[i]=1;
}
else
{
if(Low[i-1]>High[i])
{
iGapDown[i]=1;
}
}
}
//-------------------------------------------------------------------
if(MR==0)
{
BrickSize=Volatility[i-1];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
}
//------------------------------------------------------------------+
// Block 4 |
//------------------------------------------------------------------+
if(direction==0)
{
if(Open[i]-rClose[r]>BrickSize)
{
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
direction=1;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
continue;
}
//-------------------------------------------------------------------
else
{
if(rClose[r]-Open[i]>BrickSize)
{
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
direction=2;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
continue;
}
}
}
//------------------------------------------------------------------+
// Block 5 |
//------------------------------------------------------------------+
else
{
if(direction==1)
{
if(rOpen[r]-Open[i]>BrickSize)
{
r++;
rOpen[r]=rOpen[r-1];
rHigh[r]=rOpen[r];
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
direction=2;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
continue;
}
//-------------------------------------------------------------------
else
{
while(Open[i]-rClose[r]>BrickSize)
{
r++;
rOpen[r]=rClose[r-1];
rLow[r]=rOpen[r];
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
}
}
}
//------------------------------------------------------------------+
// Block 6 |
//------------------------------------------------------------------+
else
{
if(direction==2)
{
if(Open[i]-rOpen[r]>BrickSize)
{
r++;
rOpen[r]=rOpen[r-1];
rLow[r]=rOpen[r];
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
direction=1;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
continue;
}
//-------------------------------------------------------------------
else
{
while(rClose[r]-Open[i]>BrickSize)
{
r++;
rOpen[r]=rClose[r-1];
rHigh[r]=rOpen[r];
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
}
}
}
}
}
//------------------------------------------------------------------+
// Block 7 |
//------------------------------------------------------------------+
if(VR==1)
{
jOpen[j]=Open[i];
jHigh[j]=High[i];
jLow[j]=Low[i];
jClose[j]=Close[i];
//-------------------------------------------------------------------
if(direction==1)
{
jUp[j]=rClose[r];
jDown[j]=rOpen[r];
color2[j]=color[r];
}
else
{
if(direction==2)
{
jUp[j]=rOpen[r];
jDown[j]=rClose[r];
color2[j]=color[r];
}
}
j++;
}
i++;
}
//------------------------------------------------------------------+
// Block 8 |
//------------------------------------------------------------------+
if(VR==1)
{
delta=BarCount-j;
jOpen=Ref(jOpen,-delta);
jHigh=Ref(jHigh,-delta);
jLow=Ref(jLow,-delta);
jClose=Ref(jClose,-delta);
jUp=Ref(jUp,-delta);
jDown=Ref(jDown,-delta);
color2=Ref(color2,-delta);
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat(" - Open %g, Hi %g, Lo %g, Close %g (%.1f%%) ", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
PlotOHLC(jOpen,jHigh,jLow,jClose,"SRI",color3,SB);
Plot(jUp,"Up",color2,styleThick);
Plot(jDown,"Down",color2,styleThick);
}
//-------------------------------------------------------------------
else
{
delta=BarCount-1-r;
rOpen=Ref(rOpen,-delta);
rHigh=Ref(rHigh,-delta);
rLow=Ref(rLow,-delta);
rClose=Ref(rClose,-delta);
color=Ref(color,-delta);
PlotOHLC(rOpen,rHigh,rLow,rClose,"SRI",color,style Candle);
}
_SECTION_END();


renko afl

Time to buy Calls!

Guys - at times like this, it is best to buy. This is not about showing patriotism. This is about being smart.

Within days the situation will calm down, and at that point, it will look ridiculous to have missed it.

But to be safe, buy Calls. So that risk is very limited


Time to buy Calls!

mercredi 28 septembre 2016

Option Buying or Selling

Dear All

In Intraday option prices and IV vary drastically.

Other than IV which are the other parameters to decide whether to buy and option or to sell an option,especially in Intraday?

Some basics covered here,do not discuss more details.

http://ift.tt/2d6cH9N

http://ift.tt/2d6ccg5

Also any website where IV's of Nifty and Bank Nifty options where we can get Realtime IV's and other option greeks?

Any other website where we can get realtime option charts for both Indices?


Option Buying or Selling

Converter Software ex4 to mq4 build 600+

Hello,

Where from i can get software or source to convert ex4 to mq4

Answers Appreciated,
Thank You,


Converter Software ex4 to mq4 build 600+

Sebi allows commodity exchanges to introduce options



Sebi allows commodity exchanges to introduce options

introduction

Hi
I Joined today.
with Regards


introduction

ULTIMATE Final Comparison (Angel Broking vs Sharekhan)

So WHICH IS THE BEST

This is a Poll and Discussion for the Best Broker between Angel Broking and Sharekhan for Beginners

Points that Matters:
  • For Beginner
  • Quality Advisory
  • Best Customer Support

Please take part in both Poll and Discussion

Please share your Opinions, Views and anything you would like to share

Hope at the End we will find the Winner

Thanks

PULKIT


ULTIMATE Final Comparison (Angel Broking vs Sharekhan)

Trading and Investing with constant profits using Technical Analysis and Derivatives

Trade and invest with constant profits using Technical Analysis and Derivatives' Strategies .....

Strategies involve basic and advanced technical analysis for both highly traded, listed equities/ indexes at spot and derivative segment with proven money management techniques.

For Financial Markets across the world

Constant strategies will be posted, please send quiries and private messages

Thanks
Rajesh Kenche
(rajekc)


Trading and Investing with constant profits using Technical Analysis and Derivatives

Anyone knows when yahoo finance EOD data get updates?

I was trying to download (at 6:00 pm) historical prices of SBI for past one year including current day prices from yahoo finance. But for my surprise I cant download todays SBI price and can access only the previous day price.


For my curiosity can I ask do anyone have any idea when the stocks in yahoo finance get updated?


Anyone knows when yahoo finance EOD data get updates?

What is this System ?

Hi Friends,

Any idea about this system or anyone tried it ?

Thanks



What is this System ?

A great way to trade crude oil on WEDNESDAYS

Inventory data will be released at 20:00 on every Wednesday. I have been observing how it behaves during that time. I found out certain patterns. I traded during those times and 60% of the time I was right.

1) Don't trade until the 5 min candle is formed ie., wait till 20:05: Most of my mistakes revolve around this simple thing. A lot of the times you will notice that the candle breaks down to one side and then reverses.

Don't get caught in this whipsaw. If you're lucky and traded the right side you will make a huge profit but if you're caught on the wrong side then you will loose a lot. So, why take that risk:thumb:?

2) Understand the length of the body and tail: After the 5 min candle is formed, look at the length of its body and tail.

If it breaks down to one direction and closes on the other side, then don't trade for 5 more minutes. The main reason is this- large hedge funds are struggling to decide the direction based on the data. If they're struggling, then why do you want to struggle and trade:rofl:? So, wait. Never trade if the candle breaks up on one side and closes on the other. It's a recipe for disaster.


If it breaks down to one direction and closes on the same side with a small tail, then wait for a minute(the price will rebound a bit from the drop/rise). Then follow the candle's trend with a large stoploss. Most probably it will resume the direction soon enough.

If it has a small body but a large tail (on the same side) then drop a trade as soon as possible in the same direction. Keep in mind that you must look for the first sign of reversal to get out. The reason is simple- small body + large tail indicates price struggle.

3)Don't look at the data: Data released is useless because it is already discounted in the market. You think you can beat that $50M supercomputer's fundamental analysis of that data? Good luck.:D

4) Always wait for the candles to close: At that time a lot of candles will have huge tails on both sides. So, don't make a decision to close your trade until the candle closes because there might be a possibility of continuation of the trend. (I made this mistake a lot of times)

5) Don't trade from 6:30pm - 8:00: It's the time when some of the large funds close their positions before the data is released. So, Oil will act choppy and irrational during those times. Even if you find a nice pattern, I don't recommend trading at that time because you will carry extra risk.

Hope this helps. I made (and lost) a lot during that time so I know that I am talking about it from my observations and mistakes. Keep in mind that this is not a 100% fool-proof strategy or something like that. These are just my observations. Any useful knowledge or critical analysis of my ideas are appreciated.


A great way to trade crude oil on WEDNESDAYS

Introduction

Hi friends....

I'm new here....I'm full time trader....


Introduction

mardi 27 septembre 2016

Legal ways to do International forex currency trading for Indians - a discussion

Hello traders. I've read that long (and informative post on Forex trading legality issue in India... specifically referring to that 35 page thread titled -attention! Forex trading illegal in India! post)

let's first start off by asking how many of you Indian retail traders are still trading international forex market ECNs, STPs all that good stuff and making 4000+$ per month as of September 2016 and withdrawing to your local bank account successfully too... including payment of taxes as 'capital gains' :) ... especially considering the most recent RBI rule finally allowing most popular forex pairs other than those with INR...to be traded from India eg. EUR/USD, USD/JPY to name a few...
(don't worry I am not any RBI official just a retail trader like you all. I am not a newbie in currency trading but quite knowledgeable and experienced in price action and technical analysis. :D I have active accounts with multiple big names in international forex market like Alpari, XM, FXTM, Blackbullmarkets, FortFS, etc. But I am quite skeptical sending tons of INR converted dollars to fund my trading accounts via my local bank in India due to RBI regulations. So I have only opened cent accounts with all of them! .. and looking to fund with miniscule amounts which won't come under the radar hopefully)

With mini accounts I wont be able to make much $ per month. It would take years of consistent discipline and hardwork... but I love international currency trading for it's volatility and flexible timings of 24/5 to make money. Later down the line, I will fund my trading accounts with decent amounts of EARNED DOLLARS from my second online non forex business income.. which I will store in an online monetary account like webmoney. This is same as someone funding my iinternational forex trading account internationally from PURE UNCONVERTED DOLLARS. Only difference being in this case, not a NRI friend but an international online company's salary is being used as a deposit. (Message me if you want to know how I earn good amount of dollars online. ) Don't use Paypal folks. Indians cannot hold funds in PayPal. It automatically gets withdrawn to your connected bank account every 24 hours.... again thanks to RBI!

Many questions were answered in that thread but despite being comprehensive it gave rise to many unanswered questions too in the minds of Indian retail traders.

I wish to highlight those questions in this new thread. Hope the discussion on these questions will further clear up confusion in the minds of traders who still prefer Forex trading of currency pairs not coupled with RBI's son INR. (and/or who are still trading foreign currency pairs as of September 2016 and actually making 1000$+ in profits per month... and probably laughing at those slow earners stuck in NSE shares market trading :p )

Because let's face it... who likes to trade USD/INR with such a low volatility and restricted openings per week? Moreover stocks trading/ investing in share market is a lot MORE RISKIER than foreign currency trading. RBI doesnt truly care for traders money... it only cares to protect it's forex reserve! I agree it's true inexperienced traders do tend to lose a lot of money in international market as well but trained and experienced ones make tons of money too. If RBI truly cared for trader's lost money, instead of banning funding margin trading from India, it could've set a limit to the amount of INR one is allowed to invest in forex margin trading per month or per year.

so without focusing anymore about whether doing Forex trading business as a whole is illegal from India or only sending money to international Forex brokers from India is illegal (hope you understand the difference here), let's focus on below mentioned important points:
(and please correct me if any of these mthods don't work practically)

1) Given the much talked about angle of NRI friend/relative route, the fact that Forex trading of any currency pair other than our dear INR is considered PERFECTLY LEGAL from India (provided you are lucky enough to have an NRI friend abroad in the first place)... it means Indians doing forex business from India is not illegal but the means to fund money does require following rules of RBI , voilating which it can be illegal right??

So, all you clever Indian traders, how will you trade forex besides this NRI funding route if you don't have any foreigners contact to assist you? Is/are there any other technique(s) to bypass the RBI rule? I am asking info not on breaking rules but BYPASSING it just like many are doing with NRI technique.

A) One idea is to fund the trading account with floating online earning from your other non forex business without spending money from your bank account in India. But eventually you will need to withdraw profits earned from forex. How to handle that ? The forex profits earned that way will be a true income as the dollars were EARNED BY YOU and NOT OUTSOURCED BY YOUR LOCAL BANK AS INR TO USD CONVERSION VIA RBI's forex reserves.

B) Other route many say and I know 99% of Indian retail traders take to fund their forex accounts from India are the use of e-currencies. That is first deposit some INR into webmoney purse/perfect money and let the payment processor convert that Inr into equivalent dollar amount. Then fund your overseas forex account provided they support deposit methods via webmoney/perfect money. I know most reputed brokers do support e funding. But some only support bank wire or credit/debit Visa. It's not safe to trade with such brokers as transactions will come under RBI's scanner easily.

2) How many of you Indians only trade NSE or SEBI regulated Indian Brokers ? ... and are earning decent if not great profits consistently buying and selling shares...which I am sure is MUCH RISKIER THAN FOREX?? Please mention trusted Indian brokers to trade with... no scammy ones plz.

Hope this information is helpful to you and the questions raised here would be answered as well by other wise Indian forex traders who know what they are doing...
Thanks in advance!
Happy stressfree trading! :clap:

And please rate this up you found it useful.


Legal ways to do International forex currency trading for Indians - a discussion

Free Webinar for Algorithmic trading enthusiasts

Attend free webinar on how to Implement Algo Trading Strategies in Live Markets by Dr. Hui Liu - Author, IBridgePy, on Wednesday, September 28, 2016, 7:30 PM IST | 7:00 AM PT. The session is perfect for pros and beginners in the world of Automated trading with Python.
Register now
http://ift.tt/2dqd0e6


Free Webinar for Algorithmic trading enthusiasts

cover orders

i like cover orders not just because of leverage, but mainly bcoz it reduces your work. probably a very fast procedure of placing the SL order also.

but it has got its own disadvantages too. the main issue I face is when I want to square off a part of my order, which my broker doesnot allow. eg i placed a cover order for 4 qty & i want to square off 2.

does any broker allow such partial square off in cover order. like i place order of 4 sell. & want to cover 1, then 1 & then 2.


cover orders

STORE EXTRA DATA with "Foreign" Function.

Hello everyone, I have a problem with Amibroker about the possibility to store extra data using the foreign function, in fact as in the example:
myVal = Foreign (Name () + "_ Extra", "C");
i call AAPL_extra data when I view the ticker AAPL. But this way seems to work only for the data corresponding to Close, but if I do:
myVal = Foreign (Name () + "_ Extra", "O") do not match the data stored in the array Open. Could someone explain to me how to do?


STORE EXTRA DATA with "Foreign" Function.

What you want in a new online trading platform

HI, guys
I am a project manager for building new online trading platform, so I thought it would be best to know from people who daily interact with different platforms.

Our team think that there is a massive gap, in the technology for online trading platforms, there can be lot of things that can be done to allow user to make a informed decision.

So what are the things you think that online trading platform should have and how much you will be willing to pay for platform like that per month.


What you want in a new online trading platform

Hi new to Options ...would like to LEARN

Hi new to Options ...would like to LEARN before jumping in ....burnt hands (only) in shares before starting to make money ...lessons learnt ,...so now taking time to REALLY Understand the F&O Market .... I am following ...AW10....loads of information ....someone else suggested a person from Kolkatta ...am in touch ...but didnt pay him the fees to jump in ....:lol:


Hi new to Options ...would like to LEARN

Afl Modify.....Help please

Dear friends,

I have one afl renko system for amibroker but these afl not show buy or sell signal here i share these afl please try if any one can do these..

if buy candle show up arrow and if sell candle show sell arrow...

Code is below.....

_SECTION_BEGIN("kishor");
SetBarsRequired(100000,100000);
//------------------------------------------------------------------+
// Block 1 |
//------------------------------------------------------------------+
VR=ParamToggle("View Renko","Bricks|Lines/Bars",0);
FV=Param("Initial size volatility",5,5,5,5);
MV=Param("Method calculation volatility",0,0,2,1);
PeriodVol=Param("Period calculation volatility",14,2,100,1);
Multiplier=Param("Multiplier volatility",1,0.1,10,0.1);
MR=ParamToggle("Method Renko","floating|fixed",1);
SG=ParamToggle("Show gap","No|Yes",1);
CG=ParamColor("Colour show gap",11);
MaxBS=Param("Maximum size brick",0,0,10,0.1);
MinBS=Param("Minimum size brick",0,0,10,0.1);
RenkoUp=ParamColor("Colour Renko upwards",colorGreen);
RenkoDown=ParamColor("Colour Renko downwards",colorRed);
SB=ParamStyle("View bars",defaultval=styleCandle,mask=maskPrice);
color3=ParamColor("Colour bars",colorBlack);
History=Param("History size",50000,2,BarCount-1,1);
//------------------------------------------------------------------+
// Block 2 |
//------------------------------------------------------------------+
i=Max(BarCount-1-History,PeriodVol+1);
r=j=0;
direction=0;
iGapUp=iGapDown=0;
rOpen[0]=rHigh[0]=rLow[0]=rClose[0]=jUp=jDown=Open[i];
//-------------------------------------------------------------------
switch(MV)
{
case 0: Volatility=FV; break;
case 1: Volatility=ATR(PeriodVol)*Multiplier; break;
case 2: Volatility=StDev(Open,PeriodVol)*Multiplier; break;
}
BrickSize=Volatility[i-1];
//-------------------------------------------------------------------+
// Block 3 |
//-------------------------------------------------------------------+
while(i<=BarCount-1)
{
if(SG==1)
{
if(High[i-1]<Low[i])
{
iGapUp[i]=1;
}
else
{
if(Low[i-1]>High[i])
{
iGapDown[i]=1;
}
}
}
//-------------------------------------------------------------------
if(MR==0)
{
BrickSize=Volatility[i-1];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
}
//------------------------------------------------------------------+
// Block 4 |
//------------------------------------------------------------------+
if(direction==0)
{
if(Open[i]-rClose[r]>BrickSize)
{
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
direction=1;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
continue;
}
//-------------------------------------------------------------------
else
{
if(rClose[r]-Open[i]>BrickSize)
{
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
direction=2;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
continue;
}
}
}
//------------------------------------------------------------------+
// Block 5 |
//------------------------------------------------------------------+
else
{
if(direction==1)
{
if(rOpen[r]-Open[i]>BrickSize)
{
r++;
rOpen[r]=rOpen[r-1];
rHigh[r]=rOpen[r];
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
direction=2;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
continue;
}
//-------------------------------------------------------------------
else
{
while(Open[i]-rClose[r]>BrickSize)
{
r++;
rOpen[r]=rClose[r-1];
rLow[r]=rOpen[r];
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
}
}
}
//------------------------------------------------------------------+
// Block 6 |
//------------------------------------------------------------------+
else
{
if(direction==2)
{
if(Open[i]-rOpen[r]>BrickSize)
{
r++;
rOpen[r]=rOpen[r-1];
rLow[r]=rOpen[r];
rClose[r]=rOpen[r]+BrickSize;
rHigh[r]=rClose[r];
direction=1;
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoUp;
}
continue;
}
//-------------------------------------------------------------------
else
{
while(rClose[r]-Open[i]>BrickSize)
{
r++;
rOpen[r]=rClose[r-1];
rHigh[r]=rOpen[r];
rClose[r]=rOpen[r]-BrickSize;
rLow[r]=rClose[r];
//-------------------------------------------------------------------
BrickSize=Volatility[i];
if(MaxBS>0) {BrickSize=Min(MaxBS,BrickSize);}
if(MinBS>0) {BrickSize=Max(MinBS,BrickSize);}
//-------------------------------------------------------------------
if(iGapUp[i]==1|iGapDown[i]==1)
{
color[r]=CG;
}
else
{
color[r]=RenkoDown;
}
}
}
}
}
}
//------------------------------------------------------------------+
// Block 7 |
//------------------------------------------------------------------+
if(VR==1)
{
jOpen[j]=Open[i];
jHigh[j]=High[i];
jLow[j]=Low[i];
jClose[j]=Close[i];
//-------------------------------------------------------------------
if(direction==1)
{
jUp[j]=rClose[r];
jDown[j]=rOpen[r];
color2[j]=color[r];
}
else
{
if(direction==2)
{
jUp[j]=rOpen[r];
jDown[j]=rClose[r];
color2[j]=color[r];
}
}
j++;
}
i++;
}
//------------------------------------------------------------------+
// Block 8 |
//------------------------------------------------------------------+
if(VR==1)
{
delta=BarCount-j;
jOpen=Ref(jOpen,-delta);
jHigh=Ref(jHigh,-delta);
jLow=Ref(jLow,-delta);
jClose=Ref(jClose,-delta);
jUp=Ref(jUp,-delta);
jDown=Ref(jDown,-delta);
color2=Ref(color2,-delta);
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat(" - Open %g, Hi %g, Lo %g, Close %g (%.1f%%) ", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
PlotOHLC(jOpen,jHigh,jLow,jClose,"SRI",color3,SB);
Plot(jUp,"Up",color2,styleThick);
Plot(jDown,"Down",color2,styleThick);
}
//-------------------------------------------------------------------
else
{
delta=BarCount-1-r;
rOpen=Ref(rOpen,-delta);
rHigh=Ref(rHigh,-delta);
rLow=Ref(rLow,-delta);
rClose=Ref(rClose,-delta);
color=Ref(color,-delta);
PlotOHLC(rOpen,rHigh,rLow,rClose,"SRI",color,style Candle);
}
_SECTION_END();


Thanks in advance...:thumb::thumb:


Afl Modify.....Help please

Candle stick patterns

Hello All

Is there any websites which show live candle stick patterns ?

Most of them i see are past 6 month patterns . I wanted to see live charts with candle stick patterns and take trading decisions :)

Also is there a way in which i can know buy and sell volumes in market depth


Candle stick patterns

lundi 26 septembre 2016

Missing buy/sell variable statements during backtest (amibroker)

While doing backtest of the following script in amibroker, I get 'missing buy/sell variable assignment' error, though I have assigned buy/sell variables in the script.

************************************************** **************

function isBuyCond()
return (C[BarCount-2] > O[BarCount-2]);

function isSellCond()

return (C[BarCount-2] <= O[BarCount-2]);

if (isSellCond())
Sell = 1;

if (isBuyCond())
Buy = 1;

************************************************** **************

Basically with the above strategy, I am trying to generate buy/sell signals based on the last candle. If candle is green, then set BUY to True; if candle is red, set SELL to true.

Please let me know if I am missing something


Missing buy/sell variable statements during backtest (amibroker)

WHY People Like Zerodha Too Much

I am confused why People like Zerodha

Please share your Experience and let me know WHY Zerodha is better from all

Thanks in Advance

PULKIT


WHY People Like Zerodha Too Much

EOD Positional trades



EOD Positional trades

Is China central bank debt crisis will be around for ,Who will benefit ?

Hi,
As central bank of China is continue with mounting debt crisis,efforts taken to correct it are going vain. If central bank fails to tackle the issue , who will be going to benefit the most?
As all aware the Soros the most successful currency manipulator mostly in destructive way is behind yuan for long time. Will he be lucky this time also.
What will be probable impact on Indian market ?


Is China central bank debt crisis will be around for ,Who will benefit ?

Simple Breakout Strategies and Systems

Hello Everyone

I wish to learn, understand, practice and share the various breakout strategies and systems, that have been taught, defined and revealed at various places, such as books, forums and blogs.

I hope to receive enthusiastic informative and enlightening feedback from all of you.

Thanks,

-Dhanshri :D


Simple Breakout Strategies and Systems

Hello Everyone

This is Dhanshri Patel, from New Delhi, India. I am a middle aged housewife with two college going kids. My husband is with Railway.

I am learning to trade using simple tools. I am here to learn and to share new techniques and nuances about the same.

Please wish me best of luck.

-dhanshri


Hello Everyone

Can someone help on the proper use of 'addtextcolumn' function ???

Can someone help me out?

During AFL coding, i wanted results to show in cells of the column that meet the criteria while the other cells in the column remain blank/null.

My afl coding solution was as follows:
QUOTE:
Filter = 1;
AddColumn(MA(EstSec_3,260),"Volatility",1.6,IIf(MA (EstSec_3,260)>0,colorGreen,colorRed));
AddColumn(EstSec_5,"Relative Price Strength",1.6,IIf(EstSec_5>1,colorGreen,colorRed)) ;
AddColumn(EstSec_7,"Cash Momentum Rate",1.6,IIf(EstSec_7>0,colorGreen,colorRed));
SetSortColumns(-3);
AddRankColumn();
SetSortColumns(-5);
AddRankColumn();
SetSortColumns(-4);
AddRankColumn();
AddTextColumn(IIf(((MA(EstSec_3,260)>0)AND(EstSec_ 5>1)AND(EstSec_7>0)),printf(FullName()),null),"Sto ck Purchase",colorBlue);
UNQUOTE:

Unfortunately, my use of the function "addtextcolumn" is not proper as the error sign gave 'wrong arguements'. Can someone help on the proper use of "addtextcolumn" function ???

I remain.

Mike-Ekwueme (respartner)

N.B: i am an AFL coding beginner....


Can someone help on the proper use of 'addtextcolumn' function ???

dimanche 25 septembre 2016

MT4 in India

Hey Guys,

I have been checking for some MT4 data providers in India over the last 1 week or so.
The rates vary from 450/- to 1000/- a month.
The funny part is, you ask them for a demo to validate the data quality and they will always give you the Tradize server details.
4 vendors I have contacted over the last week and all of them gave me the same server and the same user ID.

Anyone experienced this?
Somethings fishy :confused:

NK


MT4 in India

POLL - Which is the Best Broker in India

Comparisons, Discussions, Opinions on Best Broker

I am a Beginner with 0% Experience. Looking for Customer Friendly, Easy to Operate, BEST Trading Broker

Please Share your Experiences, Recommendations Here (For any Broker you Like). Please Take Part in Poll Too

Thanks in Advance


POLL - Which is the Best Broker in India

Beginner in Trading | Need Guidance

Hello Everyone,

My Name is PULKIT :clap:

I am Interested in Trading but with 0% Experience. I have many Questions like which Broker to Choose, How to choose Company to Invest etc. :confused:

I would Really Appreciate all Replies Here :clapping:

Thanks in Advance :thumb:


Beginner in Trading | Need Guidance

News based algorithms

I've been curious as to how news/earnings reports/inventory data etc impacts various markets. In this thread, I want everyone to list frequent/non-frequent news based events that impact markets. And if they have traded based on news based events.

For example: In one of the threads on this forum, it shows how after natural gas storage data releases, the markets go haywire. http://ift.tt/2duH8bt
I want to create a python script to take input from investing.com and make a trade based on data interpretation.

Do you have algo strategies to trade other news events like earnings, crude inventory data etc? Also, how have been the results?


News based algorithms

factors affecting commodity trading

I am new to commodity trading ... so want to know what all factors are affecting commodity prices ?? (e.g for stock market we check world market , technical fundamental analysis, sectoral analysis , asian market , rbi policy , government rules etc etc ) simililarly what all things to be checked while doing commodity trading ??


factors affecting commodity trading

GTD And GTC order type in Indian Market

Hi,

I Just want to know the name of Indian Broker who are providing the GTC and GTD order type..:)

Particularly, discount broker if any ?? :(

Thanks in advance.


GTD And GTC order type in Indian Market

Previous day range break out

HELLO GM,

I have gone thru all the write ups on PREVIOUS DAY RANGE BREAK OUT.Can anybody tell me please that how to identify stocks which can be used to trade on PREVIOUS DAY RANGE BREAK OUT?

Is there any scanners available so that we can scan the stocks ?

At what time of the day it shall be used to scan the stocks?

Regards,
Anusmita


Previous day range break out

samedi 24 septembre 2016

Future trading

Hello friends,

I bought nifty8900 ce 29th september, Pl let me know how to suare off or
carryford the same.

shivaprabhu


Future trading

2 MA Method- easier part of "Pivot Method"

In my following thread I have discussed the 2 MA method. But it needs separate attention along with lots of charts.

Pivot Trading Thread

I do not want to disturb the Pivot thread.

So for that reason starting a new thread..


2 MA Method- easier part of "Pivot Method"

vendredi 23 septembre 2016

Limited Scrutiny Notice

hi Friends,

I've received limited scrutiny notice for AY 2015-16. I had filed losses for the year in FnO segment.

While i'm NOT scared or panicking about this as I've done the filing through a good CA, just wanted to know if any of you have had gone through this experience before.

do share details. it will help me.

Thanks.


Limited Scrutiny Notice

Why Such Low valuation - Aban offshore

Hi,

why stocks like ABAN offshore quote at such low p/e in spite of having decent EPS consistently. In fact its p/e is far lower than its industry.

There are other such stocks too which fall under this category. But let us take the example of Aban Offshore. I fail to understand the reason on this.
What factor effects this ? I mean to ask is there anything wrong in the items of Balance sheet or financial ratios for Aban offshore ?

I cant agree with reasons like market sentiment, not investor friendly or any such reason which fall out of Fundamental analysis. There must be something directly or indirectly related to Fundamentals. But what is it ?

Please give your views..


Why Such Low valuation - Aban offshore

i want this afl code anybody help me

anybody plz send afl code

Attachment 21024

Attached Images
File Type: png Capture.PNG (20.7 KB)


i want this afl code anybody help me

Iron condor-when to adjust

Iron Condor in option trading involves Call credit spread and put credit spread.
After entering the position the index moves in one direction and either callside or put side will be in trouble.
In such case any of the side may go into deep trouble. If I wait till expiry I may end up incurring max-loss in the position. Whether I have to book loss before expiry or try to roll up (if possible). If so precisely when? Whether I have to monitor my loss. Whether it is for my total position or it is for losing side(call or putside-here net position may still under profit when we take call and put together). I am confused. Veterans please help me clearing my dilemma


Iron condor-when to adjust

jeudi 22 septembre 2016

I want to deal in online stock trading. Will I need to pay brokerage for it?

I want to deal in online stock trading. Will I need to pay brokerage for it?


I want to deal in online stock trading. Will I need to pay brokerage for it?

Generating REALISTIC buy and sell signals in Amibroker backtesting

I am new to coding, and am trying out a simple strategy just for practice purposes. I am trying to generate a realistic BuyPrice for my AFL.
After a buy signal is triggered, I want the BuyPrice to be set to the low of the next 1 minute bar.

I know that I can use something like the following:
Code:

SetTradeDelays(1,0,0,0);
BuyPrice=low;

Things go on smoothly when I am backtesting my strategy with 1minute time frame. But I want to run my strategy on an Hourly timeframe. In such a case, with the above code, my BuyPrice is triggered at low of the next hourly candle after buy signal. But I want BuyPrice to be the low of next 1 minute bar and not the next 1 hour bar. Could this be done on a hourly chart?

Any help will be greatly appreciated.
Thanks


Generating REALISTIC buy and sell signals in Amibroker backtesting

introduction

Hello everyone there . I had been trading since only 2months now. I HAD NO FORMAL trainning i regret to say i incurred only loss. IT IS SI DISCOURAGING.


introduction

Multiple stop losses & profit targets for a number of lots while trading on MCX?

I have a strategy for MCX commodities. How can I automate it?

Let's say I limit buy order for crude oil at 3000 with 4 lots with sl at 2990.

I want to sell 1st lot at 3010. When price crosses 3010 then I want to modify my order as followed - sell 2nd lot at 3020 (fixed sl for all remaining lots = 3010). After price crosses 3020, I want to sell the 3rd lot at 3030 (fixed sl for all remaining lots = 3020). After price crosses 3030 then I want to have my 4th lot 's sl changed to a trailing sl of 10.

I am registered to SAS online brokerage.

I just want to put in my limit order buy price and then automate everything else that I've described in the strategy. How can I do it?

Thank you.


Multiple stop losses & profit targets for a number of lots while trading on MCX?

Bankniftyweekly option - One doubt

Today BNF-20165 ( 22.9.16),@ 3.15 PM. But,
The the weekly option 20200 PE is Rs: 65/- .Today is weekly option closing day.
But still just 15 minits to closing Rs ; 30/- is higher in weekly option .

How to gain it? or its wrong?pl.explain .


Bankniftyweekly option - One doubt

icici brokerage clarification

I have purchased 3000 shares.each share value is 0.30rs.Total Amount is =3000*0.30=900rs.
But my icici brokerage charges are 150rs.How they calculated this amount?Please guide me.

Attached Images
File Type: png shares1.png (47.0 KB)


icici brokerage clarification

mercredi 21 septembre 2016

A Question if i may ask

is there any trading platform similar to metatrader where i can write my own indicators and test my trading logic on demo ?

also do let me know how to install them on linux, thanks


A Question if i may ask

Initialize an array of 'close' data of a security

Can you help me out?

During AFL coding, how can i initialize an array of 'close' data of a specific security of interest at any particular moment?

My solution: function "foreign"
Is there a better and more appropriate function ???

I remain.

Mike-Ekwueme (respartner)

N.B: i am an AFL coding beginner....


Initialize an array of 'close' data of a security

Trader's Navigator - App For Trading On The Nigerian Stock Exchange

Hello everyone.

My name is Engr. Ekwueme Mike Anyadibe, code name - respartner.
I need yr help to turn my excel based trading strategy "trader's navigator" into an AFL code.
I hope i can also be of help to you all in my small way.
Thanks in advance.

Mike-Ekwueme...


Trader's Navigator - App For Trading On The Nigerian Stock Exchange

Krishna, New Joinee

Hi Guys,

I am new person in this forum. I have been trading since jan 2014.


Krishna, New Joinee

Hi Commodity Trader,

I found this website through google search engine. Its good and I have been trading since Jan 2014.


Hi Commodity Trader,

how to Read Crude oil INventory Data

Sharekhan provie the invetory data
every wensday 8.00 pm
how to understand that data how to know the impact on that price

Data of toady 21-09-2016

DOE US Crude oil inventories Exp{+3361} Pre{-559K} Actual{-6200K}
DOE Crushing OK Crude Inventories Exp {+675K} Pre{-1245K} Actual{+526K}
DOE US. Gasonline inventories Exp{-1300} Prev{+567K} Actual{-3204K}
DOE US. Distillate inventory Exp{+38.89K} Prev{4619k} Actual{+2238K}
DOE US. Refinery utilization Exp{-0.71%} Prev{-0.80%} Actual{-0.9%}

please anyone explain how to understand this


how to Read Crude oil INventory Data

how to add custom column to the stocks imported from metastock?

Hello,

I have a series of stocks imported from metastock format.
I would like to add market capitalization data, which get from other paid sources not yahoo, to the end of new column.
Any solutions can provide to me?

THX


how to add custom column to the stocks imported from metastock?

Hello Amibroker

Learning Amibroker is my fun:thumb:


Hello Amibroker

Need Clarification on ICICI brokerage

I have buy 3000 shares worth(0.30RS).So total amount is 900.
But brokerage charges are 150.Can you please explain how they calculate brokerage charges.

Attached Images
File Type: png Untitled.png (48.8 KB)


Need Clarification on ICICI brokerage

While investigating companies, how much is too much?

When I talk to people or read blogs and forums, I see people doing so much investigation into companies that I felt like asking the question how much is too much?

I see people trying to apply principles of Soros and Buffet. Every other investor is talking about behavioral economics. Reading annual reports to the every last detail. Attending conference calls.

I feel 80-20 rules applies well while researching companies.

One can find 80% of things needed to rate a company by considering 20% of parameters. After that it is a law of diminishing returns.

I would simplify things even more to just two points. Answers to these two points will give you 80% information about the health of the company and what can be expected from it in future.

* Is the company making money (profits), organically without raising debt or diluting equity
* Is the company making more money (growth) with increased efficiency (margin growth), organically without raising debt or diluting equity.

I would love to know what people of this group think about this subject.


While investigating companies, how much is too much?

need Elliot wave formula or excel sheet

Dear friends

im looking for Elliot wave Formula or Excel sheet based on OHLC data like pivot trading ..

.. pls share ..


Thanks in advance


need Elliot wave formula or excel sheet

mardi 20 septembre 2016

What to do when market trade at mad valuations?

This is a difficult market for both investors and traders. One cannot boldly go long because the valuations are stretched and one cannot boldly go short because there is free flow of money buying every dip.

So the question is what should one do?

Let's consider the options and advantages and disadvantages of all options:

* Book partial profits, stay in cash and wait for a correction
* Go long and buy
* Go short and sell

Book partial profits, stay in cash and wait for a correction

Adv: Can buy at lower levels if/when the market correct to 8000/8200 odd levels. Now those levels are just 5-7% away and a 5% correction is not unheard of during a bull run.

Dis-Adv: Market stays where it is and waits for Q2/Q3 results that will be loaded with the benefits of a good monsoon. Or it could even rally during Nov-Dec time frame anticipating good results. In case, there is an earnings improvement in Q2/Q3 it is not going to be a 1 or 2 qtr improvement. There will be enough momentum in the earnings and as a result there will be quick moves in the stock prices. Once there is clarity of earnings recovery, market is not going to offer stocks at cheaper price to people who wanted to make a "safe bet".

Go long and buy

Adv: While value is hard to find in these times, it is has not disappeared totally. Yes, the indices are overpriced and over valued but there are stocks available for decent valuations even in these times. Buying now, will give you a feeling of not missing out on the bull run that might come after Q2/Q3 results.

Dis-Adv: In the speculative period between Q1 and Q2 earning there is chances the markets might correct by 5-7% because of the lack of any positive triggers. Buying now, means one needs the courage to seem temporary red in the portfolio for the next 3 months.

Go short and sell

Adv: Gain of 5-7%

Dis-Adv: Markets might stay flat or might not correct all the way till 8000. Might just dip another 200 points. Once needs to be very alert in this case and be prepared to act quickly. Holding shorts will spoil the good night sleep.

Conclusion

So option 3 of going shot definitely does not look attractive as the risks and restlessness is very high for a gain of 5-7%.

So between option 1 and 2 which one is better?

According to me, if you are a individual stock picker with an investment horizon of at least 9 months to an year and can see some red in the portfolio temporarily without getting bothered then the way to go would be a combination of option 1 and 2. i.e. book profits in the stuff that seems overvalued but at the same time keep and eye out for value. Yes, value is hard to come by but is still available.


What to do when market trade at mad valuations?

Connect Amibroker to this broker via API

It's possible to connect Amibroker to this broker via API?

http://ift.tt/1NxpoTq

or

http://ift.tt/29v0UiE

or

http://ift.tt/1T9wpOK

thanks


Connect Amibroker to this broker via API

Intial Steps - Log book

I am in touch with stock market from 2006. Mostly observe, lil invested, lil traded but never systematically involved in it. This is the first time I have decided to try it for an alternative income source.

Capital - 2.1 Lacs

Goal - Make 10k/MoM

Dos / Don'ts -
1. Do not use margin.
2. Only trade in stock.
3. Log every trade.


Intial Steps - Log book

Trading US stock market

Hi,

I wanted to know if anyone trades ( day trade or swing trade) in the US stock market?


Trading US stock market

How to fix this error (MT4 DLL Experts)

Hello, please help write error

"arrys passed by reference only"
http://ift.tt/2d1S4xX
[IMG][/IMG]


How to fix this error (MT4 DLL Experts)

Short selling

I got to know that short selling can only be done in INTRADAY ....

I wanted to know how many times can i do short selling per day ....

I mean if i sell and buy abc shares by 12:30 and if i feel abc share might go further down can i again sell and buy abc share with in 3:30 :)

Also i wanted to know exact meaning of square off , which happens at 3:20 if i dont buy it after short selling :mad:


Short selling

ICICI Pru Life

Will ICICI Pru Life shares be allotted if one bids at 300 in ICICI Bank shareholders category if the issue is not fully subscribed in that particular category?


ICICI Pru Life

Do zerodha kite offeres after market bracke or cover order?

I have seen that Zerodha kite has bracket, cover and after market order but is there any after market bracket order/cover order? after market in the sense between 6:00 pm night and 8:30 am next morning

If I want to place an equity MIS order (with limit price for intraday) at 10:00pm in night for the next trading day with a trailing stop loss. How should I do it?


Do zerodha kite offeres after market bracke or cover order?

lundi 19 septembre 2016

INR - deviating from the script

This was not the script that one expected for INR. Raghuram Rajan, favorite of the markets, stepped down as RBI Governor 2 weeks back. $25-30 Billion USD of FCNR deposits maturing from September to November.

Most people expected Rupee to weaken, and justifiably so. But Rupee has managed to hold its own. Quite comfortably. And if there is even a slight uptick in markets, it will probably even strengthen!

What is going on? Yes - dollar is weak overall, because of expectations Fed is not going to raise rates - but still.

I think these are early signs that the FCNR redemption money is not deserting the country the way people were worried about for last few months. It is very much staying back in the country.

And if that money is staying back in the country, where would it most likely end up - why, the equity markets of course. The India story looks quite attractive, and especially considering how bad the situation looks elsewhere, this becomes the natural place to park the country. Even more so for Indophiles who were ready to park their money in India in 2013, a period that was probably as bad, or in some ways even worse, than the gloomy days of 1991!

If a significant portion of that money comes into Indian equities, it could potentially push markets way higher.

Watch out for the flood.


INR - deviating from the script

Cairn - Vedanta - interesting situation

Recently, oil prices have been moving up. Also, Cairn got an extension on its Barmer block in Rajasthan. This should have had a positive impact on Cairn stock - however, what's happening is that the stock is coming down!

The reason is that Copper and other metal prices have been coming down.

Because of the merger between Cairn and Vedanta, and because of the way the terms have been set, Cairn and Vedanta are moving together. And since Vedanta is under pressure, Cairn also has been coming down. And this makes Cairn available at a very attractive price relative to the prospects for the company!

However, even if you buy Cairn at an attractive price, it will be converted to Vedanta when the merger closes! At which point, you will lose the benefit :-)

How would you play this transaction?


Cairn - Vedanta - interesting situation

Sun Pharma - interesting situation!

Sun Pharma is buying back Rs 675 crores of stock at Rs 900/share - over 15% premium to current prices.

That's a great indication of the confidence the promoters have in the prospects of the company, and a great way to enhance returns to all shareholders. That decreases shares outstanding by 0.3%, and therefore increases earnings yield by the same amount.

But more importantly, this open offer transcends the F&O expiry in September - because it is open from Sep 22 to Oct 5. The expiry is on Sep 29th, one week after the start of the open offer.

If you submit your shares into the open offer before the 29th, you won't have them available for sale - and this could actually boost share prices on expiry. Plus the typical positive sentiment associated with a share buyback. Plus anyone buying shares in the expiry can also submit those shares in open offer!

Unlike Coal India, this is a real buyback - with a 15% premium, so could be tempting to some shareholders - especially those who are sitting on Sun Pharma from higher levels, and therefore not concerned about the Capital Gains implications (Open offer doesn't suffer STT, therefore no benefit of Zero long term capital gains taxes).


Sun Pharma - interesting situation!

stock market

how to buy shares of company that are not listed in nse and/or bse


stock market

dimanche 18 septembre 2016

Would like some opinion on the result of the backtest...

Hey everyone, I have modified some afl.... One of them seems to be giving an ok result...

Here are the results:











So... is this afl practical in the real market? Or is it still need more adjustment?

Thanks for your opinion


Would like some opinion on the result of the backtest...

Historical IEOD 1 min

Hi, Is there anybody downloading IEOD 1 min data using Datadowloader from volumedigger.com ? for all NSE and BSE scrips regularly. If so please let me know


Historical IEOD 1 min

Hi

Hi
I am from Iran


Hi

hi-new joinee

hi all,

i am new to traderji and trading too.i am very much interested in trading but have few doubts about trading.first one is ,can someone please tell me what is haircut in my trading as i am seeing the same in my margin statements daily.

Raju


hi-new joinee

Fund Switching

Hi all
let me ask your help for i want to buy life insurance "Ulip Future gain" in Bajaj Allianz but i want to awere of funds switching before i was decided to buy. Please any body help.


Fund Switching

Hallo

Hallo:thanx:


Hallo

Extremely thankful to Traderji.com

It has been years since I entered trading area. My relentless search for a successful strategy which suits my psychology has finally been found. My journey into trading has seen lot of ups and downs. Ups included winning a couple Zerodha 60 days challenges and Downs included loosing large amount of money in trading and trading related activities.

Most of you will not believe it that I saw this strategy right here in Traderji.com a few years back. I thought it was another usual strategy and not given much attention. Surprisingly this is the one I have been looking for all these years. My conscious was alerting me that.... it is right there. Look at it with open eyes. Wow ! What a surprise....I could not see the thing which is just infront of my eyes. Thats the difference. Seeing with Mind and seeing with eyes.

Never stop and never give up.

You will surely end up striking the Gold Mine.:)

All the best mates and wish you all a successful trading and abundant wealth.

Finally, my Gratitude and immense thanks to Traderji, Moderator SmartTrade who has been my inspiration all these years, lot of boarders who are very cooperative and having knowledge sharing spirit with whom i have interacted here and the other forums. Its been active 6 years journey associated with forum and trading.


Extremely thankful to Traderji.com

Basic Guidance Sought

I use ODIN for trading. I have some basic question's for which I seek guidance/advise from all

1. I have bought a share for Rs. 100/-, My Target price is Rs. 102/- but I want put a stop loss at Rs. 98/-. How do I put the stop loss in ODIN after my purchase ??

2. I have bought a share for Rs. 100/-, My Target price is Rs. 102/-. The target price is reaching but I feel/assume/see the price will only fall from there & I want to sell again from there. What should I do (e.g should I double the selling quantity)??

Thanks & Regards


Basic Guidance Sought

Mechanical trading

Hi,

I want to automate trades based on technical indicators like Supertrend, or 20 period high/low breakouts etc . One thing I understood so far is to get NISM series VIII certification.

Everybody is talking about plugins, datafeed and AFL, Python programming

I am looking for mechanical trades without any manual confirmation. Prefer solutions not involving additional software like amibroker, tradestation and datafeed subscriptions.

Please suggest me whether it is possible with any broker/software and the procedure to follow.


Mechanical trading

need help

hello.
Can anybody guide me how i can import nse options bhavcopy to amibroker.?
is there any utility which can convert nse bhavcopy to ami Format?
I will be really very much thankFull to you.
Regards


need help

samedi 17 septembre 2016

Buy/sell mutual funds with 200D MA?

Hi,

Wonder if anyone here uses 200D MA to help in determining buy/sell of mutual funds? Is this method better than simply buy and hold strategy? Also like to know if other technical analysis tools such as MACD (Moving average convergence divergence) can be used, and how?

I tried to search this forum, could not find any discussion on this. I understand that technical analysis has been widely used in trading stock/index/future/etc, but not sure if it can be used in buy/sell mutual funds, what are the issues to be considered. Assuming that there are no fund switch cost between different funds.

Thanks for sharing :)


Buy/sell mutual funds with 200D MA?

introduction

Trade and help oihers to trade


introduction

[Help] Zerodha Kite Api

Hi friends,

I want to automate a simple Open=Low, Open=High strategy for kite api. Can someone help me in building this.

Thanks


[Help] Zerodha Kite Api

how to plot a line with AFL

how can i plot a line between 2 selected points.

Code:

_SECTION_BEGIN("trendline");

var1=SelectedValue(O);
var2=SelectedValue(C);

_SECTION_END();

If i use
Code:

Plot(startpoint,"Low",colorYellow,styleLine,1);
it plots a straight line at the value of var1...i want to get a line from var1 to var2


how to plot a line with AFL

Is your computer painfully slow and there is no money to buy new one?

How To Make Your Old, Slow Computer Like-New Again (it's easier than you think!)

Clever new device is saving people hundreds (even thousands) and the big computer companies aren't happy about it!

Is your computer painfully slow? Have you considered buying a new 'faster' computer but the price of even a basic one makes you cringe? Do you wish there was a cheaper, more affordable way to get a new computer? (Hint: there is – keep reading.)

It's incredibly frustrating when computers slow down or stop working for seemingly no reason at all. And even after all the diagnostics, upgrades, and money spent, the amount of time waiting for that spinning wheel or hourglass to disappear never seems to get any shorter. Your once new, lightning-fast, computer just keeps getting slower as each day passes.

Well, fortunately, there's a new device that has recently hit the market and it's literally giving old, slow computers lightning fast speed again. And to say it's extremely affordable is grossly understated!


(Original: http://ift.tt/2cucBGC)

XtraPC How it Works: https://www.youtube.com/watch?v=NzKQGGzZdGY

Xtra-PC Demo: https://www.youtube.com/watch?v=E0E70jhTQHQ


Is your computer painfully slow and there is no money to buy new one?

vendredi 16 septembre 2016

Algo/Automated Trading Primer

I have been a Trader for almost 6 years now and into automated trading since 2 years now. This Thread is started for people who want to know more about algorithmic/automated Trading. Its Pros and Cons Both.

I ll mostly talk about the pitfalls of strategy designing and the best practices followed globally. Other things discussed will be portfolio Construction, Trading Ideas and Coding Help As well.


Algo/Automated Trading Primer

A powerful simple system

A powerful simple system for trading lower time frame,it use bolliner bands,stochastics and EMAs only:-
Look for the the bellow requirements for a long set up


a)Is price touching or piercing the lower
Bollinger band;if yes follow rule 'b";if
no then do not trade

b)Is stochastics oversold and below the
20 line;if yes follow rule "c";if no no trade

c)Do you see any one of the candle formation as bullish pin bar;doji;long bearish candle and immedietly long bullish candle approximately of same height.;if yes follow rule "d";if no no trade

d)Is candle formation is in conflunce with one or more of the following support areas;
Trendline/horizontal support line/50 ema/200 ema/Price round number.
If yes it is a high probability trade.If no then also you can enter into a trade.This
trade is a low probability trade.

NB:-stochastic %K=8;%D=3;slowing=4.
BB period=20,deviation=2
Reverse the rules for a sell setup.


A powerful simple system

:d:d:d:d:d

Sorry wrong click...:p
Mods please delete
sorry


:d:d:d:d:d

Should I Trade ????

I made a loss of 900rs today have been making losses from past some time

I buy stocks and i dont like to carry forward with them and take positions so i sell them on the same day either in profit or loss :annoyed:

I prefer only intraday because the other charges and brokerage is less in intraday

In spite of making losses i feel i learnt some thing and i invest again and make NEW mistakes:mad:

Am i really learning or is it an Addiction

I am scared , i will invest again on Monday and loose money:(

Should i TRADE ???? Experienced Traders please let me know


Should I Trade ????

real time quote for amibroker philippine stock market

hi

just want to know if anybody here know where to get real time quote for amibroker? i want to try it in philippine stock


real time quote for amibroker philippine stock market

Tad Intro

Hi

1) Your trading/investing experience.

Nil but looking to meet new people and test skills.

2) The number of years you have been investing or trading in the markets.

I was into it through a relatgionship manager who was handling the portfolio long time back and booked loss..

3) Your area of interest - IPO's/secondary market/futures/options/commodities, etc.

IPO's, Options looks appealing to me...

4) How do you make your trading decisions.

Advice/Suggestoions

5) How you discovered this forum.

Google ofcourse

6) ETC, etc.

I am here now!


Tad Intro

Hello

hi
Namaste to everyone.


Hello

Trading Dairy and Notes



Trading Dairy and Notes

jeudi 15 septembre 2016

Any portfolio tracker for future's and options segment?

IS there any free tracker for future's and option's segment.I just want to track my returns from future's segment?


Any portfolio tracker for future's and options segment?

New to stock market.. need guide!

Hello.. some one help with with the basics!?


New to stock market.. need guide!

Hi!

I am a medium to long term investor. I like to invest in undervalued mid-cap and small-cap companies. I like to share information and learn from others!

Thank you!
Chirag


Hi!

hi

hello everyone


hi

Selling shares

Hi this shiva... am new to this ..need help .. bought shares 6 months ago in equity.. now i wanna sell my shares.. but not able to do.. everytime its rejecting


Selling shares

Introduction

Hi this is shiva jakkam


Introduction

Amibroker Coding Help

Hi I am using this afl .but the support resistance signal came later.The particular code of support resistance as follows


//==============================
_SECTION_BEGIN("HL Pivots");
//==============================
psh= ParamToggle("Pivot Shapes","Off|On",1);
plb= ParamToggle("Pivot Labels","Off|On",1);
snd= ParamToggle("Sound Alerts","Off|On",1);
lbk= Param("Hi Lo Lookback",350,50,5000,10);
nbz= Param("Swing Bars",20,5,150,1);
tht= Param("Hi Label Adjust",0.65,0.10,5,0.05)*ATR(5);
lbk= Min(BarCount-1,Lbk);
bc=BarCount-1;
//================
xH=H-H; xL=L-L; yH=H-H; yL=L-L; xR=H-H; xS=L-L;
xrb=0; xSb=0; yR0=0; yS0=0; xR0=0; xS0=0; xx=0;
xHH= HHVBars(H,nbz); xLL= LLVBars(L,nbz);
yHH= HHV(H,nbz); yLL= LLV(L,nbz);
viz= Status("BarVisible");
vbz= LastValue(Highest(IIf(viz,BarIndex(),0)));
_TRACE("Last visible bar: "+ vbz);
bct= (BarCount-1); dir = "";
if(xLL[bc]<xHH[bc]) { dir="D"; } else { dir="U"; }
for(i=0; i<lbk; i++) { bc=bct-i;
if(xLL[bc]<xHH[bc]) { if(dir=="U"){dir="D";
xx=bc-xLL[bc]; xL[xx]=1;
yL[xSb]=L[xx]; xS[xSb]=xx; xSb++; }
} else { if(dir=="D") { dir = "U";
xx=bc-xHH[bc]; xH[xx]=1; yH[xrb]=H[xx]; xR[xrb]=xx;xrb++; }}}
xP= 0; yP= 0; xS0= xS[0]; yS0=yL[0]; xR0= xR[0]; yR0= yH[0];
if(xS0>xR0) { xP=bc-xHH[bc]; yP= yHH[bc];
if(yR0<yP AND xP>xS0 AND xP<bc) { xH[xP]=1;
for(j=0; j<xrb; j++) { yH[xrb-j]= yH[xrb-(j+1)];
xR[xrb-j]= xR[xrb-(j+1)]; }
yH[0]= yP; xR[0]= xP; xrb++; }
} else { xP= bc-xLL[bc]; yP= yLL[bc];
if(yS0>yP AND xP>xR0 AND xP<bc) { xL[xP]=1;
for(j=0; j<xSb; j++) { yL[xSb-j]= yL[xSb-(j+1)]; xS[xSb-j]= xS[xSb-(j+1)]; }
yL[0]=yP; xS[0]=xP; xSb++; }}
ushp=shapeHollowUpArrow; dshp=shapeHollowDownArrow;
if(psh) { PlotShapes(xH*dshp,42,0,H,-10); PlotShapes(xL*ushp,43,0,L,-10); }
if(snd) {
AlertIf(xL==1,"SOUND C:\\Windows\\Media\\Windows XP Startup.wav","Audio alert",2);
AlertIf(xH==1,"SOUND C:\\Windows\\Media\\Ringin.wav","Audio alert",2); }
Buy=(xL); Sell=(xH); Cover=(xL); Short=(xH); Long=Flip(Buy,Sell); Shrt=Flip(Sell,Buy);
SellPrice=ValueWhen(Sell,H,1); BuyPrice= ValueWhen(Buy,L,1);
if(plb) {
for(i=0; i<BarCount; i++) {
if(Buy[i] )PlotText("\n\n"+ StrRight(NumToStr(L[i],6.2),5),i-1,L[i],43,16);
if(Sell[i])PlotText(StrRight(NumToStr(H[i],6.2),5),i-1,H[i]+tht[i],32,16); }
}
_SECTION_END();
//===========================
_SECTION_BEGIN("Sup & Res");
//===========================
plt= ParamToggle("Sup_Res","Off|On",1);
rpd= Param("Res Periods",2,0,200,1);
spd= Param("Sup Periods",2,0,200,1);
rsc= ParamToggle("Sup_Res","Off|On",1)*2048;
sty= ParamStyle("Style",1)|rsc;
rco= ParamColor("Res Color",22);
sco= ParamColor("Sup Color",22);
if(plt){
pma= TEMA(H,rpd);
pk= pma>Ref(pma,-1)AND Ref(pma,1)<H;//Peak
yp0= ValueWhen(pk,haH,0);
yp1= ValueWhen(pk,haH,1);
yp2= ValueWhen(pk,haH,2);
pkM= yp2<yp1 AND yp1>yp0; prq=Ref(pkM,-1)==0 AND pkM==1;//MajorPeak
yR1= ValueWhen(prq,yp1,1); xR1= ValueWhen(prq,dtn,1);
yR1= IIf(dtn<SelectedValue(xR1),Null,SelectedValue(yR1) );
yR2= ValueWhen(prq,yp1,2); xR2= ValueWhen(prq,dtn,2);
yR2= IIf(dtn<SelectedValue(xR2),Null,SelectedValue(yR2) );
yR3= ValueWhen(prq,yp1,3); xR3= ValueWhen(prq,dtn,3);
yR3= IIf(dtn<SelectedValue(xR3),Null,SelectedValue(yR3) );
yR4= ValueWhen(prq,yp1,4); xR4= ValueWhen(prq,dtn,4);
yR4= IIf(dtn<SelectedValue(yR4),Null,SelectedValue(yR4) );
yR5= ValueWhen(prq,yp1,5); xR5= ValueWhen(prq,dtn,5);
yR5= IIf(dtn<SelectedValue(xR5),Null,SelectedValue(yR5) );
yR6= ValueWhen(prq,yp1,6); xR6=ValueWhen(prq,dtn,6);
yR6= IIf(dtn<SelectedValue(xR6),Null,SelectedValue(yR6) );
Plot(yR1,"R1",rco,1);
Plot(IIf(yR2!=yR1,yR2,Null),"R2",rco,sty);
Plot(IIf(yR3!=yR2 AND yR3!=yR1,yR3,Null),"R3",rco,sty);
Plot(IIf(yR4!=yR3 AND yR4!=yR2 AND yR4!= yR1,yR4,Null),"R4",rco,sty);
Plot(IIf(yR5!=yR4 AND yR5!=yR3 AND yR5!=yR2 AND yR5!=yR1,yR5,Null),"R5",rco,sty);
Plot(IIf(yR6!=yR5 AND yR6!=yR4 AND yR6!=yR3 AND yR6!=yR2 AND yR6!=yR1,yR6,Null),"R6",rco,sty);
//=========================
//======== SUPPORT ========
//=========================
tma= TEMA(L,spd);
tr= Ref(tma,1)>L AND tma<Ref(tma,-1);//Trough
yt0= ValueWhen(tr,haL,0);
yt1= ValueWhen(tr,haL,1);
yt2= ValueWhen(tr,haL,2);
trM= yt2>yt1 AND yt1<yt0;
psq= Ref(trM,-1)==0 AND trM==1;
yS1= ValueWhen(psq,yt1,1); xS1= ValueWhen(psq,dtn,1);
yS1= IIf(dtn<SelectedValue(xS1),Null,SelectedValue(yS1) );
yS2= ValueWhen(psq,yt1,2); xS2= ValueWhen(psq,dtn,2);
yS2= IIf(dtn<SelectedValue(xS2),Null,SelectedValue(yS2) );
yS3= ValueWhen(psq,yt1,3); xS3= ValueWhen(psq,dtn,3);
yS3= IIf(dtn<SelectedValue(xS3),Null,SelectedValue(yS3) );
yS4= ValueWhen(psq,yt1,4); xS4= ValueWhen(psq,dtn,4);
yS4= IIf(dtn<SelectedValue(xS4),Null,SelectedValue(yS4) );
yS5= ValueWhen(psq,yt1,5); xS5= ValueWhen(psq,dtn,5);
yS5= IIf(dtn<SelectedValue(xS5),Null,SelectedValue(yS5) );
yS6= ValueWhen(psq,yt1,6); xS6= ValueWhen(psq,dtn,6);
yS6= IIf(dtn<SelectedValue(xS6),Null,SelectedValue(yS6) );
Plot(yS1,"S1",sco,sty);
Plot(IIf(yS2!=yS1,yS2,Null),"S2",sco,sty);
Plot(IIf(yS3!=yS2 AND yS3!=yS1,yS3,Null),"S3",sco,sty);
Plot(IIf(yS4!=yS3 AND yS4!=yS2 AND yS4!= yS1,yS4,Null),"S4",sco,sty);
Plot(IIf(yS5!=yS4 AND yS5!=yS3 AND yS5!=yS2 AND yS5!=yS1,yS5,Null),"S4",sco,sty);
Plot(IIf(yS6!=yS5 AND yS6!=yS4 AND yS6!=yS3 AND yS6!=yS2 AND yS6!=yS1,yS6,Null),"S4",sco,sty);
}
_SECTION_END();








Thanks and Regards

Christy


Amibroker Coding Help

Intro

Hi This is Christy Raja, Intraday trader. Looking forward some good results from this forum.


Do Practice and Win

:thumb:


Christy Raja


Intro

ICICI Bank - India's best positioned bank

For years, ICICI was easily the most aggressive bank in India. And today it is paying the price for that aggression, as its NPA levels have hurt valuations in a big way. Compared to a player like HDFC, ICICI has less than HALF the valuation of HDFC, despite having bigger operations!

But all that aggression did not just happen in terms of retail and corporate loans. That aggression also manifested itself in multiple other areas. And today ICICI is positioned to reap a rich harvest from many of those areas.

The ICICI Prudential Life Insurance is slated to open on the 19th of September. And this will obviously be a huge thing. ICICI's residual stake in IPru Life, will be over Rs 25,000 crore, even at the bottom of the band. The money they get from selling the 12% stake will go a long way in easing their NPA issues.

And it is not just IPru Life. There is IPru Asset Management, ICICI Lombard, and many other subsidiaries of ICICI where they are the leading private sector players in their respective fields. At some point or the other, these will all get monetized. You can be sure that IPru is just the first on the list.

But even more than this, ICICI is the first player in the world to recognize the importance of social banking. ICICI Pockets was the first ever banking product launched on Facebook globally. And it still is unique in that space. B2B Branch free banking is also a unique initiative from ICICI which was crippled because of the KYC Paper work needed, and the physical presence that KYC required. But with eKYC becoming the new norm, B2B is poised to become the low cost banking channel of the future. Even in terms of payments, ICICI eToll solution for Toll payment in highways was the first in India, launched almost a year back. Its only now that a few other banks are getting their act together in this space.

The FinTech revolution is going to impact banks around the world in dramatic ways, and ICICI is well positioned to adapt to the new world. There are many who look at the cutting edge of FinTech as just blockchain, distributed ledgers, etc. But FinTech is about a lot more than that - and there are huge areas that are ripe for exploitation today. ICICI is doing a great job in being a first mover in those areas.

The aggression that's there in the ICICI DNA has helped it position itself in a sweet spot for the future. And I must say, it may even save ICICI some blushes in the lending space!

Skate to where the puck will be - not where the puck was. And ICICI very much is skating to where the puck will be.


ICICI Bank - India's best positioned bank

Option premium turnover.

I need LIVE Total Call option & Put option premium turnover for every stocks Which website gives it freely?
Total means grand total of all call option &
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, put option.


Option premium turnover.

Predict cycle

Guys,

Please some one convert this afl to mt4.

Want to test 1 method which useful for NSE.
I got from marketcalls.
please help me.

Dont change any parameter, functionality or any value. I need exactly same in MT4.

PHP Code:

_SECTION_BEGIN("Market Trend");
SetChartOptions(0,chartShowArrows|chartShowDates);

_N(Title StrFormat(" -   Open %g, Hi %g, Lo %g, Close %g (%.1f%%)  - Cycle analysis indicator from www.marketcalls.in"OHLCSelectedValueROCC) ) ));

PlotC"Close"colorDefaultstyleNoTitle ParamStyle("Style") | GetPriceStyle() ); 


function 
predictCyclearg1arg2 )
{
  
local var1var2

  
result arg1 arg2

  return 
result;
}

Predict=0;
ParamField("Price field",-1);
Periods Param("Periods"152300110 );
Predict PredictCycle(C,Periods);

Buy Predict>Ref(Predict,-1);
Sell Predict<Ref(Predict,-1);

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

Plot(Predict,"Predict",colorwhite,styleLine styleThick);

PlotShapes(IIf(BuyshapeUpArrowshapeNone),colorGreen0,LOffset=-5); 
PlotShapes(IIf(SellshapeDownArrowshapeNone),colorRed0,HOffset=-5);

 
_SECTION_END(); 



Predict cycle