NexusFi: Find Your Edge


Home Menu

 





Bressert or Zondor's ZLag Double Smoothed Stoch for Multicharts?


Discussion in MultiCharts

Updated
      Top Posters
    1. looks_one Jura with 2 posts (0 thanks)
    2. looks_two tdaman with 2 posts (1 thanks)
    3. looks_3 olobay with 1 posts (0 thanks)
    4. looks_4 bear2016 with 1 posts (0 thanks)
    1. trending_up 4,814 views
    2. thumb_up 1 thanks given
    3. group 4 followers
    1. forum 5 posts
    2. attach_file 1 attachments




 
Search this Thread
  #1 (permalink)
 
tdaman's Avatar
 tdaman 
Colorado Springs
 
Experience: Intermediate
Platform: Sierra Chart, Ninja Trader
Broker: IQFeed, AMP/CQG
Trading: EC, ES, TF
Posts: 130 since Oct 2010
Thanks Given: 38
Thanks Received: 24

I've been unsuccessful at finding this amazing indicator for Multicharts. The following is code from the MC site but it has compiling errors and I'm not a programmer. Another version is Zondor's Zero Lag Double Stochastic Optimized for NT (Elite Section) that would be a dream for Multicharts!!! Any help would be much appreciated!

/*******************************************************************
Description:This Indicator plots DSS Bressert
Provided
By: Developed by TS Support, LLC for eSignal. (c) Copyright 2002
********************************************************************/
function preMain()
{
setStudyTitle("DSS Bressert");
setCursorLabelName("DSS", 0);
setCursorLabelName("Trigger", 1);
setDefaultBarFgColor(Color.brown, 0);
setDefaultBarFgColor(Color.red, 1);
addBand(20, PS_SOLID, 1, Color.black);
addBand(80, PS_SOLID, 1, Color.black);
}
var:EMA_1'('0;
var EMA1_1 =0;
var EMA2_1 =0;
vAA = new Array();
function main(pds,slw,triggerLen,emalen){
if (pds == null)
pds = 10;
if (slw == null)
slw = 3;
if (triggerLen == null)
triggerLen = 5;
if (emalen == null)
emalen = 9;
var vHigh = getValue("High",0,-pds);
var vLow = getValue("Low",0,-pds);
var dClose = getValue("Close");
var K = 2 / (emalen + 1);
var K2 = 2 / (triggerLen + 1);
var aa = 0;
var dss = 0;
var High = 0;
var Low = getValue("Low");
var aHigh = 0;
var aLow = 10000000;
var EMA1 = 0;
var EMA = 0;

for (i = 0; i < pds; i++){
if (High < vHigh[i])
High = vHigh[i];
if (Low > vLow[i])
Low = vLow[i];
}
if((High - Low) != 0)
EMA = K * ( (dClose - Low) / (High - Low) ) + (1 - K) * EMA_1;
else
EMA = EMA_1;
if (getBarState() == BARSTATE_NEWBAR)
EMA_1 = EMA;
aa = EMA * 100;
for(i = pds - 1; i > 0; i--)
vAA[i] = vAA[i - 1];
vAA[0] = aa;
for (i = 0; i < pds; i++){
if (aHigh < vAA[i])
aHigh = vAA[i];
if (aLow > vAA[i])
aLow = vAA[i];
}
if (aHigh - aLow != 0)
EMA1 = K * ( (aa - aLow) / (aHigh - aLow) ) + (1 - K) * EMA1_1;
else
EMA1 = EMA1_1;
if (getBarState() == BARSTATE_NEWBAR)
EMA1_1 = EMA1;
dss = EMA1 * 100;
var EMA2 = K2 * dss + (1 - K2) * EMA2_1;
if (getBarState() == BARSTATE_NEWBAR)
EMA2_1 = EMA2;
return new Array(dss,EMA2);
}
/*******************************************************************/


Started this thread Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
Double Deadlock: Rubio Calls Hormuz Tolls "Unfeasib …
Traders Hideout
The June 15 Resolution Trap: Irans Agreed Text Still Pri …
Prediction Markets & Event Contracts
The 50/50 Paradox: Peace and Invasion Each at 20% -- Ira …
Prediction Markets & Event Contracts
I Have a Thing Called Iran -- Trump Stays in DC as Airsp …
Prediction Markets & Event Contracts
Warsh Rate Hike at 40%, Iran June 15 Expires Tonight at …
Prediction Markets & Event Contracts
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
NexusFi site changelog and issues/problem reporting
16 thanks
Darmok and Jalad at Tanagra
3 thanks
Big Mike in Ecuador
2 thanks
CME Expands 24/7 Trading to WTI Crude Oil and Gold -- We …
1 thanks
30 Sessions
1 thanks
  #2 (permalink)
 coolma1973 
San Mateo
 
Experience: Beginner
Platform: Ninja Trader
Trading: es/ eur/usd/oil/gold
Posts: 10 since Jun 2012
Thanks Given: 2
Thanks Received: 0

Hi Any luck get this indicator?


Reply With Quote
  #3 (permalink)
 
tdaman's Avatar
 tdaman 
Colorado Springs
 
Experience: Intermediate
Platform: Sierra Chart, Ninja Trader
Broker: IQFeed, AMP/CQG
Trading: EC, ES, TF
Posts: 130 since Oct 2010
Thanks Given: 38
Thanks Received: 24


Sorry, I did not

Sent using the NexusFi mobile app


Started this thread Reply With Quote
  #4 (permalink)
 olobay 
Montreal
 
Experience: Intermediate
Platform: MultiCharts
Broker: DeepDiscountTrading.com
Trading: CL
Posts: 364 since Jul 2011

One of these might do it for you.


Attached Files
Elite Membership required to download: Stochastics Indicators.pla
Reply With Quote
  #5 (permalink)
bear2016
Tulsa Ok USA
 
Posts: 1 since Jan 2017
Thanks Given: 0
Thanks Received: 0

Been looking for the Bressert for Multicharts. Found this feed but not sure what to do with the link provided.


Reply With Quote
  #6 (permalink)
 
Jura's Avatar
 Jura   is a Vendor
 
Posts: 775 since Apr 2010
Thanks Given: 2,352
Thanks Received: 691


bear2016 View Post
Been looking for the Bressert for Multicharts. Found this feed but not sure what to do with the link provided.

You'll need to download the above .pla file and import it into the PowerLanguage Editor.

Here is more information about importing scripts into MultiCharts: importing studies - MultiCharts Wiki.


Reply With Quote




Last Updated on July 24, 2017


© 2026 NexusFi®, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Downloads - Top
no new posts