ยินดีต้อนรับคุณ,
บุคคลทั่วไป
กรุณา
เข้าสู่ระบบ
หรือ
ลงทะเบียน
1 Hour
1 Day
1 Week
1 Month
Forever
Login with username, password and session length
News:
ใครมี Facebook ก็สามารถ add มาคุยกับ admin ได้แล้วนะครับ
Home
Help
Login
Register
»
EA Programing
»
ปัญหาที่พบในการเขียน EA
»
Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ
« หน้าที่แล้ว
ต่อไป »
Print
Pages: [
1
]
Author
Topic: Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ (Read 13713 times)
chartwat
Newbie
Posts: 43
Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ
«
on:
ธันวาคม 23, 2014, 07:01:55 am »
Admin ครับ อ่านค่า bollinger bands ในช่อง RSI ยังไง ครับ ตามภาพนะครับ
Logged
chartwat
Newbie
Posts: 43
Re: Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ
«
Reply #1 on:
ธันวาคม 23, 2014, 07:03:35 am »
หากอยู่ใน กราฟ จะใช้
double b1=iBands(NULL,PERIOD_H1,20,2,0,PRICE_CLOSE,MODE_UPPER,0);
double b2=iBands(NULL,PERIOD_H1,20,2,0,PRICE_CLOSE,MODE_MAIN,0);
double b3=iBands(NULL,PERIOD_H1,20,2,0,PRICE_CLOSE,MODE_LOWER,0);
ขอบคุณครับ
Logged
admin
Administrator
Hero Member
Posts: 2386
Re: Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ
«
Reply #2 on:
ธันวาคม 24, 2014, 12:12:29 am »
ไม่น่าจะเอาออกมาได้นะ แต่ต้องถามก่อนมันเป็น custom อินดี้เคเตอร์เปล่า ถ้าใช้อาจจะใช้ icustom ดึงออกมาได้ครับ
Logged
chartwat
Newbie
Posts: 43
Re: Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ
«
Reply #3 on:
ธันวาคม 24, 2014, 07:49:17 am »
มันเป็น RSI ครับ แล้วดึง Bolinger Band 20 มาใส่ครับ
พอดี ลอง ๆ ทดสอบกับการ trade มือ แล้ว ถือว่าแม่นพอสมควร ครับ คิดว่าอยากเอามาทำ EA ดูครับ ขอบคุณท่าน admin ครับ
«
Last Edit: ธันวาคม 24, 2014, 07:51:01 am by chartwat
»
Logged
xa.em
Newbie
Posts: 3
Re: Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ
«
Reply #4 on:
มีนาคม 12, 2015, 02:47:18 pm »
To add BB to your RSI:
1. Put RSI on your chart
2. Open "Navigator" (Ctrl+N) and select BB
3. Drag BB icon to RSI indicator window (you might have to hold down ctrl)
4. On the BB "Parameters" tab, change "Apply to: Close" to "Previous Indicator's Data"
5. Press OK
Not sure about %b of RSI but that should get you started.
ผม เอามาจากเว็บนอก ครับ ลองดูครับ
Logged
admin
Administrator
Hero Member
Posts: 2386
Re: Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ
«
Reply #5 on:
มีนาคม 13, 2015, 03:00:53 am »
ถ้าเป็นการนำ BB ไปใส่ใน RSI อีกทีผมก็จนปัญญาที่จะอ่านค่ามันครับ เพราะมันไม่ใช้ค่า BB ของกราฟ แต่เป้น BB ของ RSi ครับ
Logged
D_Diamond
Hero Member
Posts: 673
Re: Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ
«
Reply #6 on:
มีนาคม 15, 2015, 12:33:14 pm »
ใช้ iBandOnArray ได้ครับ
ต.ย.ตายาย rsi14 bb20/2เส้นล่าง
double RSIBuffer[
20
];
double BBlowofRSIBuffer;
int shift=0; //
ถ้าจะเอาชิพต้องใส่ที่ RSI
for(int i=0; i <
20
; i++)
{
RSIBuffer
=NormalizeDouble(iRSI(Symbol(),Period(),14,PRICE_CLOSE,shift),4);
shift++;
}
BBlowofRSIBuffer=NormalizeDouble(iBandsOnArray(RSIBuffer,
20
,
20
,2,0,MODE_LOWER,0),4);
Comment("RSI = ", RSIBuffer[0],"\nBB Lower of RSI = ",BBlowofRSIBuffer);
Logged
ก๊อปปี้เทรด เดือนละ $20
Print
Pages: [
1
]
« หน้าที่แล้ว
ต่อไป »
»
EA Programing
»
ปัญหาที่พบในการเขียน EA
»
Admin ครับ อ่านค่า bands ในช่อง RSI ยังไง ครับ