Simple Coding Help - No Promise.

xsis

Active Member
dear trash

cumulative delta is a difference between the volume traded @ask and volume traded @bid. it can be done as esignal provide tick data along with bid/ask!
btw is this the same code (ur screenshot) i am referring too. can u post it (if not proprietary).

thks

Basically it's just the difference of bid to ask volume getting cumulated every day or for whole history. As long as you don't have a data source offering according bid ask data then it is pointless to code it anyway.

 
Buy = trend==1
AND Close >MA(High,5);

BuyPrice=ValueWhen(Buy,C);

Sell = trend==-1
OR Close >= (BuyPrice+(BuyPrice*0.0046)) ;

SellPrice=ValueWhen(Sell,C);



Short= trend==-1
AND C < MA(L,5);

ShortPrice=ValueWhen(Short,C);

Cover=Trend==1
OR C <= (ShortPrice-(ShortPrice*0.0046));

CoverPrice=ValueWhen(Cover,C);
Can you help me code it so that it shows Cover signal only if any Short position is open? Right now it shows all cover trades at satisfied conditions irrespective of any open SHORT position.

Much thanks :confused:
 

a1b1trader

Well-Known Member
Thanks candle for pointing out
Yes, the actual name of the scrip is AARTIIND
AARTIND was a tying error.
------------------:)
:lol: :lol: :lol:

Yes, It can be a good past time, searching spelling mistakes, grammatical mistakes and last but not the least, correct punctuation marks. Oh, I forgot, one can search for uppercase errors also (not using uppercase at proper places)

A fellow member, in an other thread, pointed out (in my post) that I didnt put a '?' after the sentence, though he himself is not good in English and used to do, a lot of spelling and grammatical mistakes.

:lol: :lol: :lol:
 
Last edited:

a1b1trader

Well-Known Member
With the help of fellow friends,
Today I successfully converted my Amibroker database to a mix of EOD and IEOD data, (in order to make space for further data).

Thank to those, who helped me in this regard, particularly Amitrandive and Trash.
Thanks once again.
 
There are many helpful friends here..Thank you all from the beginning.I have one problem I don't understand time frame..I want a simple example so please

example = ı have two indicator this indicators diffirent

A indicatör 60 minutes example rsi
B indicator 15 minutes example macd

I trade 15 minutes and with indicator B.

when my B indicator buy or sell in 15 minutes.Dont buy sell... wait A indicator in hourly close.
 

lvgandhi

Well-Known Member
I have modified code got from this forum to draw lines at the top and bottom of three min candle, which is as follows
TM=Param("Time",091759,110000,235500,1);
afterbreakout0 = Cross(TimeNum(),TM);
afterbreakout1 = TimeNum()>=TM;
NewDay = Day()!= Ref(Day(), -1);
highestoftheday = HighestSince(newday,H,1);
Lowestoftheday =LowestSince(newday,L,1);
ORBHigh = ValueWhen(afterbreakout0,highestoftheday,1);
ORBLow = ValueWhen(afterbreakout0,lowestoftheday,1);
Plot(ORBHigh,"",colorLime,styleDots);
Plot(ORBLow,"",colorRed,styleDots);
But it draws lines after two three min candles.
Where am I going wrong?
How to correct It?
 

dell

Well-Known Member
senior's ,
if we wanna to see lot size and margin for it on top of screen , how can we do it ?
i mean to say we select any script chart , we want to see it's margin detail and lot size on top of chart for taking trading desicision .......
is we have to make 2 excel sheet for having lot size detail and margin detail ? how to proceed in this matter ?
 
I am looking for simple pop ups on EMA crossover. Do we have the facility of real time pop ups in AMI Broker. I am using the 315 AFL but looking for the pop up . Also is there a way i can get SMS if there is a buy signal on Any AFL ? Many thanks in advance.
 

Similar threads