Welcome to NexusFi: the best trading community on the planet, with over 200,000 members Sign Up Now for Free
Genuine reviews from real traders, not fake reviews from stealth vendors
Quality education from leading professional traders
We are a friendly, helpful, and positive community
We do not tolerate rude behavior, trolling, or vendors advertising in posts
We are here to help, just let us know what you need
You'll need to register in order to view the content of the threads and start contributing to our community. It's free for basic access, or support us by becoming an Elite Member -- discounts are available after registering.
-- Big Mike, Site Administrator
(If you already have an account, login at the top of the page)
Does anyone know what language ProRealTime use for their indicators? I am interested in finding a indicator and I have no idea what language ProRealTime use, so I am unable to look and choose an indicator that will work for me. Thanx in advanced.
Can you help answer these questions from other members on NexusFi?
Thanx Cory, I have noticed that there is not a section in the Downloads / Indicators section for Visual Basic, do any of the other platforms use Visual Basic? Will any indicators in the Downloads / Indicators section work in ProRealTime advanced charts. Thanx in advanced.
no prorealtime indi here but base on their programming manual and video tutorial it is not too hard, exmp:
Pinbar indicator called "Pinbar ID"
value = 0
clong1 = low < low[1] and low<low[2]
clong2 = close >= low[1]-1 and open >= low[1]-1
clong3 = abs(open - close) < 4*range/10
clong4 = open > (low + range*5/10) and close > (low + range*5/10)
//clong5 = range > average[100](averagetruerange[14](close))*1.2
//clong6 = SMI[14,3,5](close)<35
cshort1 = high > high[1] and high > high[2]
cshort2 = close <= high[1]+1 and open <= high[1]+1
cshort3 = abs(open - close) < 4*range/10
cshort4 = open < (high - range*5/10) and close < (high - range*5/10)
//cshort5 = range > average[100](averagetruerange[14](close))*1.2
//cshort6 = SMI[14,3,5](close)> -35
if clong1 and clong2 and clong3 and clong4 then
value = 10
elsif cshort1 and cshort2 and cshort3 and cshort4 then
value = -10
endif
return value
pinbar scanner current bar
myPinbarID = CALL "Pinbar ID"
screener[abs(myPinbarID) > 0](close AS "Price")
pinbar scanner previous bar
myPinbarID = CALL "Pinbar ID"
screener[abs(myPinbarID[1]) > 0](close AS "Price")
G'day Cory, I tried loading the above 'Pinbar ID' indicator but it kept coming back with various Syntax errors. I have no experience or understanding of program language so I am unable to create the indicators I am after.
I am trying to get an Auto-Fibonacci Indicator, I have found 3 indicators on this site that seem to be what I am after but they are not created for ProRealTime advanced charts. 1 is a re-created Nexgen T-3 Fib ProTrader indicator by Fat Tails and the other 2 indicators I am interested in are below: