Range defining AFL !

#1
Dear friends,
Hello,

If I want to refer the past 20 bars with the High & Low, is it possible ? I mean, to be specific, If I want to scan the past 20 bars with the difference between highest high & lowest low, can we do it ?

Please guide & help

Thanks & Regards

Avinash Raste
 
#2
Dear Boss-13055,

Thanks for this quick reply. I will be applying it and reply to you soon. Thanks for your efforts you took to help & guide.

Thanks & Regards

Avinash Raste
 
#3
Dear Boss-13055,

You have posted the list line is the avg of past days. What I want to apply is :

1) I want to define a range for example, past 20 days the stock should have moved in the range of 2 %. That means the difference between Past 20 day's high & low should not be more than 2 %.

2) By this way it will be certain that stock has not moved in any direction. Neither up nor down.

I hope I am not confusing you


Thanks & Regards

Avinash Raste
 

KelvinHand

Well-Known Member
#4
Dear friends,
Hello,

If I want to refer the past 20 bars with the High & Low, is it possible ? I mean, to be specific, If I want to scan the past 20 bars with the difference between highest high & lowest low, can we do it ?

Please guide & help

Thanks & Regards

Avinash Raste

//MyTF = inDaily;

//TimeFrameSet( MyTF);

My_HH = hhv(H, 20);
My_LL = llv(L, 20);

My_Diff = My_HH - My_LL;
//TimeFrameRestore(); // restore time frame to original
 

KelvinHand

Well-Known Member
#5
Hi Seniors i need ur help in ammibroker

If a Formula GIves Buy sell signal Charts in amibroker
we can backtest its results to know its Percentage of Wins
Same Time Can we get this
For an Example in Intraday Chart Buy Sell Signals 5 times a days
at the time of signal(buy ) can it be Exported to excel sheet
and at the time of (sell)can it be exported in excel with Profit calculations
Like Bought@abc Sold@ abc Total Profit and Loss xyz
Will It Be Possible In Excel In reatime?? in amibroker
Edit/Delete Message
I think No for realtime cause all the write is to file.
Unless DDE with excel
 

KelvinHand

Well-Known Member
#6
Will it Be Done FOr Eod ?
should be able to do it.
but dde function not in amibroker.
need 3rd party dll written for your requirement.

for example amibroker link to MT4 platform provide
user-definable DDE server/topic/item for each field (open, high, low, close, volume, trade size, total volume, bid, bid size, ask, ask size, time)

http://www.amibroker.com/dde.html
 
Last edited:

KelvinHand

Well-Known Member
#8
What is The Best Way to Anlayse the Market For Intraday Trading
Trend
Pivot Points
Daily High
Daily Low
Weekly High
Weekly Low
Ema

After Analysing All
THe Entry Will be On What Basis with Stoploss And Targets For The Successful Trading????

Fibonnaci
Gannn

All things come into 4 things whatever timeframe, s/l, target :
- trend
- support and resistance.
- Price action to above 2
- money management

Successful Trading mostly based on discipline and patient
 
Last edited:

mastermind007

Well-Known Member
#10

Similar threads