Forex



Go Back   Forex Trading > Discussion Areas > Setup Questions
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #31 (permalink)  
Old 10-12-2008, 12:53 AM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
Parabolic-close.mq4
Attached Images
File Type: gif parabol close.gif (17.8 KB, 775 views)
Attached Files
File Type: mq4 Parabolic-close.mq4 (5.6 KB, 191 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #32 (permalink)  
Old 10-21-2008, 01:34 PM
Member
 
Join Date: Apr 2006
Posts: 34
netk is on a distinguished road
need a variation

Would like to see a "close" variation - where the new plot starts at the high of the bar.

i.e. Will stop and reverse on the close of a bar, but the new plot will start using the recent high not recent high/close. So will then continue and SAR again on the close as before.


Also this code draws flat when on real time data.

Last edited by netk; 10-21-2008 at 02:55 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #33 (permalink)  
Old 10-21-2008, 05:34 PM
tradr3's Avatar
Junior Member
 
Join Date: Oct 2008
Posts: 1
tradr3 is on a distinguished road
A little help ???

I am new to this site. I am working on a system and wanted to know if anyone knows where I can download an audio alert for the Parabolic SAR on Metatrader 4. I'd appreciate your help.
Thnx.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #34 (permalink)  
Old 10-21-2008, 08:37 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,058
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Check the thread from the beginning: there are many Parabolic indicators with alert.
__________________
My blog on TSD
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #35 (permalink)  
Old 11-07-2008, 02:08 PM
Member
 
Join Date: Apr 2006
Posts: 34
netk is on a distinguished road
IB code

Interactive brokers have parabolics on their trader workstation,
....but......
it is not correct.

It only SAR's on a "close" - not on "touch".
Also when it plots again it starts on the last high or last low - and not the close of the last high or low (as you would expect for continuity)


Anyway thought i would mention it, as it would be good to be able to get a "parabolic" in metatrader that plots similarly.
Only useful if you are trading via IB.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #36 (permalink)  
Old 11-18-2008, 06:14 PM
Junior Member
 
Join Date: Apr 2006
Posts: 4
Topgun_68 is on a distinguished road
Problem with PSAR on Multiple Time Frames!

Hello everyone. I am trying to write a simple indicator to just plot the daily PSAR as a line above and below the current price on a 4HR chart and having no success. It does plot the lines and if I look at the daily chart it is perfeclty alligned the the PSAR dots. BUt when I go to my 4HR chart the lines don't correspond to the daily PSAR values. I know this because I plotted the daily PSAR on a 4HR chart and they didn't line up correctly. I'm sure it's simple but this is the first time I am attempting to make one.

Thanks for any info.

//+------------------------------------------------------------------+
//| PSAR-ADX.mq4 |
//| Copyright © 2008, MetaQuotes Software Corp. |
//| Forex Trading Software: Forex Trading Platform MetaTrader 4 |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2008, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"

#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Red

extern bool Send_Mail = true;
//---- buffers
double DailyPSARBuy[];
double DailyPSARSell[];

int init()
{
IndicatorBuffers(2);
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,2,Blue);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,2,Red);
SetIndexBuffer(0,DailyPSARBuy);
SetIndexBuffer(1,DailyPSARSell);
return(0);
}

int deinit()
{
return(0);
}

int start()
{
int counted_bars=IndicatorCounted();
double DailyPSARValue,CandleClose;
string message;
static bool TradeOn;

if(Bars<=100) return(0);
//---- check for possible errors
if(counted_bars<0) return(-1);
//---- the last counted bar will be recounted
if(counted_bars>0) counted_bars--;
int i=Bars-counted_bars;

while(i>=0)
{

DailyPSARValue = iSAR(NULL,PERIOD_D1,0.02,0.2,i);
CandleClose = iClose(NULL,0,i);
if (DailyPSARValue < CandleClose)
DailyPSARBuy[i]= High[i]+30*Point;
if (DailyPSARValue > CandleClose)
DailyPSARSell[i]= Low[i]-30*Point;
i--;
}

return(0);
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #37 (permalink)  
Old 11-18-2008, 11:49 PM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
use mtf psar (many : mtf indicators thread + serch forum)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #38 (permalink)  
Old 11-19-2008, 01:21 AM
Junior Member
 
Join Date: Apr 2006
Posts: 4
Topgun_68 is on a distinguished road
I am using the MTF PSAR which was posted and I love it but I dont like the daily PSAR on a 4HR chart because it is so far away from the price. That's why I am trying to use the lines above and below the price. I have it working but its not accurate when I compare it the the actual PSAR dots. I'm searching but can't find anything on this. I like the PSAR Color bar but I can't get a daily version to display accurately on a 4hr chart. .

Topgun


Quote:
Originally Posted by fxbs View Post
use mtf psar (many : mtf indicators thread + serch forum)

Last edited by Topgun_68; 11-19-2008 at 01:28 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #39 (permalink)  
Old 11-19-2008, 04:42 AM
Senior Member
 
Join Date: Jan 2007
Location: not so remote
Posts: 3,272
fxbs is on a distinguished road
again: use mtf psar (modify, add levels etc. to mtf psar, not psar you posted)

Last edited by fxbs; 11-19-2008 at 04:48 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #40 (permalink)  
Old 11-23-2008, 07:36 AM
matfx's Avatar
Senior Member
 
Join Date: Sep 2007
Posts: 510
Blog Entries: 3
matfx is on a distinguished road
Parabolic Trendchaser, alert available and MTF.
Attached Images
File Type: gif parabolic trendchaser.gif (33.0 KB, 518 views)
Attached Files
File Type: mq4 Parabolic_trendchaser.mq4 (3.6 KB, 213 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
forex tsd, indicator, MTF PSAR, parabolic, parabolic alert, parabolic ea, parabolic SAR, parabolic sar alert, Parabolic SAR Color, Parabolic SAR Color - Alert, PARABOLIC SAR EA, parabolic sar indicator, Parabolic SAR mq4, parabolic sar settings, parabolic trendchaser, SAR ALERT, Scalp_net, scalp_net EA, stop indicator


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Parabolic SAR is a leading indicator? Cyclesurfer General Discussion 8 05-25-2008 05:13 PM
X-Parabolic Indicator mistico Indicators - Metatrader 4 8 01-08-2008 12:48 PM
Parabolic SAR marcf Documentation 4 05-11-2007 12:14 PM
Parabolic Sar and MAs EA DAZLER Suggestions for Trading Systems 1 06-30-2006 05:32 AM
where can I find the Parabolic Sar indicator shiningstar Indicators - Metatrader 4 14 05-25-2006 02:15 PM


All times are GMT. The time now is 07:24 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.