Simple Coding Help - No Promise.

hello everyone...this is a humble request for a AFL. i hope some good soul will helpp me. i am very sorry as i have no knowledge of coding and honestly difficult to learn at this stage of life.

Whenever price is above/below a certain EMA on a particular time frame (both definable), it should display a message board as BUY MODE/SELL MODE on all charts irrespective of their time frame.

thanx...
 
hello everyone...reposting this again........this is a humble request for a AFL. i hope some good soul will helpp me. i am very sorry as i have no knowledge of coding and honestly difficult to learn at this stage of life.

Whenever price is above/below a certain EMA on a particular time frame (both definable), it should display a message board as BUY MODE/SELL MODE on all charts irrespective of their time frame.

thanx...
 
Hi!

I am looking for the AFL. NO BUY/ SELL INDICATION...

Wanted to plot just Horizontal Lines.

Started a thread regarding this request...

The same is as under:

Hi!

Need Help from AFL Gurus...

Wanted to plot the following Horizontal lines on the chart (this horizontal lines should be visible on any time frame, be it 1 mins or 1 moth)

Wanted to plot Open, High, Low & Close of the Last 03 Trading Days.


For Example,

For trading Chart of Today i.e. 10/08/2015 (Monday), I want to plot Open, High, Low & Close of
5/08/2015 (Wednesday), 6/08/2015 (Thursday) and 7/08/2015 (Friday).

For Trading Chart of 11/08/2015 (Tuesday), I want to plot Open, High, Low & Close of
6/08/2015 (Thursday), 7/08/2015 (Friday) & 10/08/2015 (Monday)

This lines should have ids. Eg.
Open of 10/08/2015 (Monday) can have O1
Open of 07/08/2015 (Friday) can have O2
Open of 06/08/2015 (Thursday) can have O3

The same way for, High (H1/ H2/ H3), Low and Close.

Option of Selection of types of lines (i.e. normal, thick, dotted, thick & dotted, etc) and colors will make this afl more useful.

Thank a lot in advance.

Regards.
Waiting for a afl guru to create this afl.

Regards.
 

krab

Active Member
Hi,
Please help me
I am looking for an afl which gives audio alert when price crosses bollinger bands mid point or mid MA in 1 minute time frame along with buy and sell arrow.
 
Last edited:

cellclinic

Well-Known Member
Hello Friends ...

Again a help needed :)

Code:
_SECTION_BEGIN("Magnified Market Price");
//by Vidyasagar, [email protected]// 
FS=Param("Font Size",30,11,100,1);
GfxSelectFont("Times New Roman", FS, 700, True ); 
GfxSetBkMode( colorWhite );  
GfxSetTextColor( ParamColor("Color",colorGreen) ); 
Hor=Param("Horizontal Position",1050,1,1200,1);
Ver=Param("Vertical Position",1,1,830,1); 
GfxTextOut(""+C, Hor , Ver );
YC=TimeFrameGetPrice("C",inDaily,-1);
DD=Prec(C-YC,2);
xx=Prec((DD/YC)*100,2);
GfxSelectFont("Times New Roman", 11, 700, True ); 
GfxSetBkMode( colorWhite );  
GfxSetTextColor(ParamColor("Color",colorWhite) ); 
GfxTextOut(""+DD+"  ("+xx+"%)", Hor , Ver+45 );
_SECTION_END();
Need to Get script name in this too ...
 

amitrandive

Well-Known Member
Hello Friends ...

Again a help needed :)

Code:
_SECTION_BEGIN("Magnified Market Price");
//by Vidyasagar, [email protected]// 
FS=Param("Font Size",30,11,100,1);
GfxSelectFont("Times New Roman", FS, 700, True ); 
GfxSetBkMode( colorWhite );  
GfxSetTextColor( ParamColor("Color",colorGreen) ); 
Hor=Param("Horizontal Position",1050,1,1200,1);
Ver=Param("Vertical Position",1,1,830,1); 
GfxTextOut(""+C, Hor , Ver );
YC=TimeFrameGetPrice("C",inDaily,-1);
DD=Prec(C-YC,2);
xx=Prec((DD/YC)*100,2);
GfxSelectFont("Times New Roman", 11, 700, True ); 
GfxSetBkMode( colorWhite );  
GfxSetTextColor(ParamColor("Color",colorWhite) ); 
GfxTextOut(""+DD+"  ("+xx+"%)", Hor , Ver+45 );
_SECTION_END();
Need to Get script name in this too ...
http://www.wise stocktr ader.com/indicators/717-background-symbol-name
(remove spaces)
 

NJ23

Well-Known Member
HI,
I'm performing a backtest (Intraday Strategy) on a basket of securities. What I want to do is get the "daily" returns of the intraday trades summed and exported to a csv file for each symbol. Can anyone help me out with that?
Say I win $1 on ABC and I lose $0.5 then my return on ABC for that day is $0.5. I want this to be exported in a csv file with the trade date.
 
dear seniors

I am in need of an explorer which will show 52 week breakout(Up/Down) of last 10 days and % of retracement in current in the following format.
symbol, date, 52 week up breakout ,52 week down breakout,% of retracement today,closing price,volume.
moreover it will scan stocks with closing price above rs 50 and having volume 500000.

thanks in advance.
ranjitsingh1974.
 
dear seniors

I am in need of an explorer which will show 52 week breakout(Up/Down) of last 10 days and % of retracement in current in the following format.
symbol, date, 52 week up breakout ,52 week down breakout,% of retracement today,closing price,volume.
moreover it will scan stocks with closing price above rs 50 and having volume 500000.

thanks in advance.
ranjitsingh1974.
What is 52 week up breakout for last 10 days?

What is 52 week down breakout for last 10 days?

Never heard of such a thing
 
HI,
I'm performing a backtest (Intraday Strategy) on a basket of securities. What I want to do is get the "daily" returns of the intraday trades summed and exported to a csv file for each symbol. Can anyone help me out with that?
Say I win $1 on ABC and I lose $0.5 then my return on ABC for that day is $0.5. I want this to be exported in a csv file with the trade date.
What is your amibroker version? AFAIK, This feature was added in Amibroker version 5.5

In the automatic analysis, click on settings window. 4th Tab is Reports. On that tab, radio controls with caption "Result lists shows:" show three choices. Select "Trade List" or "Detailed Log". Towards the bottom there is a check box that reads "Generate detailed reports for each symbol...."
 

Similar threads