Simple Coding Help - No Promise.

hmp

Well-Known Member
Nifty fut after opening till 1.50 pm was stuck in very narrow range, in such condition most of the system will generate to many signals and mostly alll of them will fail

TSI trend line break out worked again today in extremely range bound market, today 2 signals for break out 1st did not worked out 2nd gave good fall....

I dont say its holy grail, but where most of the system fails tsi break out is generating very less signals and good signals

adult photo sharing[/QUOT
 
Dear Sir

I have developed a new Amibroker Chart which is very useful. I developed this chart with the help of some indicators combination which is available on the internet.

Now the problem is How to generate Buy and Sell Signal on chart for back testing and easy trading.

If anybody help me than I can post the chart and formula.

Please help.
 
Dear Sir

I have developed a new Amibroker Chart which is very useful. I developed this chart with the help of some indicators combination which is available on the internet.

Now the problem is How to generate Buy and Sell Signal on chart for back testing and easy trading.

If anybody help me than I can post the chart and formula.

Please help.
I can see that you've posted the same query and were redirected here. People here do contribute solutions but expect disclosure from those who intend to receive help.
Unless you post the chart and/or the formula, no one will help you..
 
Last edited:

Nehal_s143

Well-Known Member
Dear Sir

I have developed a new Amibroker Chart which is very useful. I developed this chart with the help of some indicators combination which is available on the internet.

Now the problem is How to generate Buy and Sell Signal on chart for back testing and easy trading.

If anybody help me than I can post the chart and formula.

Please help.
mention your exact rules, coding buy sell will not be difficult....
 

Riskyman

Well-Known Member
mention your exact rules, coding buy sell will not be difficult....
H Nehal, Thank you for being kind enough to help others with coding.
I was wondering if you or others could put together a code for the requirements I mentioned in my post #2822.

Thanks
 

cellclinic

Well-Known Member
Could you please share coding for this ?

Nifty fut after opening till 1.50 pm was stuck in very narrow range, in such condition most of the system will generate to many signals and mostly alll of them will fail

TSI trend line break out worked again today in extremely range bound market, today 2 signals for break out 1st did not worked out 2nd gave good fall....

I dont say its holy grail, but where most of the system fails tsi break out is generating very less signals and good signals

adult photo sharing
 
Hi Sir.. Needed an exploration afl for following conditions sir... Unable to know how to do it sir....

1. A bullish Heiken Ashi candle (white) crosses above the 14 SMA.
2. The OsMA crosses above its Zero level.
3. The Momentum indicator crosses above the 100 level.
4. The RSI crosses above the 50 level.
5. As soon as all conditions mentioned above are met, we wait for the current candle to
close then display BUY

A bearish Heiken Ashi candle (red) crosses below the 14 SMA.
2. The OsMA moves below the Zero level.
3. The Momentum indicator crosses below the 100 level.
4. The RSI crosses under the 50 level.
5. As soon as all conditions mentioned above are met, wait for the current candle to
close and then display SHORT
 

sr114

Well-Known Member
Hi Sir.. Needed an exploration afl for following conditions sir... Unable to know how to do it sir....

1. A bullish Heiken Ashi candle (white) crosses above the 14 SMA.
2. The OsMA crosses above its Zero level.
3. The Momentum indicator crosses above the 100 level.
4. The RSI crosses above the 50 level.
5. As soon as all conditions mentioned above are met, we wait for the current candle to
close then display BUY

A bearish Heiken Ashi candle (red) crosses below the 14 SMA.
2. The OsMA moves below the Zero level.
3. The Momentum indicator crosses below the 100 level.
4. The RSI crosses under the 50 level.
5. As soon as all conditions mentioned above are met, wait for the current candle to
close and then display SHORT
define heiken ashi

buy=haclose>sma of 14 and rsi > 50 and osma>0 and mom>100;
sell=haclose<sma of 14 and rsi < 50 and osma<0 and mom<100;

buy=ref(buy,-1);
sell=ref(sell,-1);

filter = buy or sell

addcolumn c
addcolumn sma 14
addcolumn rsi
addcolumn osma
addcolumn mom
addcolumn buy /sell
this is the structure of the exploration. code it accordingly
 

amsin21

Well-Known Member
Hi Sir.. Needed an exploration afl for following conditions sir... Unable to know how to do it sir....

1. A bullish Heiken Ashi candle (white) crosses above the 14 SMA.
2. The OsMA crosses above its Zero level.
3. The Momentum indicator crosses above the 100 level.
4. The RSI crosses above the 50 level.
5. As soon as all conditions mentioned above are met, we wait for the current candle to
close then display BUY

A bearish Heiken Ashi candle (red) crosses below the 14 SMA.
2. The OsMA moves below the Zero level.
3. The Momentum indicator crosses below the 100 level.
4. The RSI crosses under the 50 level.
5. As soon as all conditions mentioned above are met, wait for the current candle to
close and then display SHORT
Dear Vinpoor,

Isn't all indicators/HS except RSI on chart are lagging? Try to compensate with some coincident or leading indicator like CCI, RSI (included above) , Stochastics (vulnerable) , and the mighty OBV.

Nothing beats volume even price ... trust me...
 

Similar threads