search for: ttr

Displaying 20 results from an estimated 183 matches for "ttr".

Did you mean: str
2007 Dec 26
2
Two lines for outgoing calls
Dear All, I'm using Asterisk 1.4.16.2 with Zaptel 1.4.7 on Debian with kernel 2.6.18. I have two analog lines Zap/1 and Zap/2 as group 1 in zapata.conf. I'm using below context for dialing out. [outbound-local] exten => _9XXX,1,Dial(Zap/g1/${EXTEN:1},30,tTr) exten => _9XXXXX,1,Dial(Zap/g1/${EXTEN:1},30,tTr) exten => _9ZXXXXXX,1,Dial(Zap/g1/${EXTEN:1},30,tTr) exten => _9ZXXXXXXX,1,Dial(Zap/g1/${EXTEN:1},30,tTr) exten => _90900XXXXX,1,Dial(Zap/g1/${EXTEN:1},30m,tTr) When Zap/1 is busy and I try to call, it will use Zap/2 which is fine but t...
2006 May 29
2
Asterisk Internal sip calls I can´t send/recive
...lbox=203 callgroup=1 pickupgroup=1 nat=never ---------- extensions.conf -------------- [exterior] exten => _0.,1,Dial(Zap/1/${EXTEN:1},60,r) exten => _0.,2,Hangup ;Contestar llamada [entrada] exten => s,1,Wait,11 exten => s,2,Answer exten => s,3,Wait,1 exten => 1,1,Dial(SIP/200,60,Ttr) exten => 2,1,Dial(SIP/201,60,Ttr) exten => 3,1,Dial(SIP/202,60,Ttr) exten => 4,1,Dial(SIP/203,60,Ttr) ;BUZONES DE VOZ DESAHABILITADOS [anurix] include => exterior exten => 200,1,Dial(SIP/200,60,t) exten => 200,2,Voicemail(200) exten => 200,3,Hangup exten => 201,1,Dial(SIP...
2005 Aug 05
1
TE405P Dropping Calls
..._0X.,3,Hangup include => dialstring [to-sip] exten => 098,1,WaitMusicOnHold(45) exten => 099,1,Echo ;simple echo test when you dial 099 on your phone exten => 511,1,VoiceMailMain(s${CALLERIDNUM}) exten => 500,1,SetMusicOnHold(random) exten => 500,2,Dial(SIP/bt-pavilion,30,Ttr) exten => 500,3,Voicemail2,u500 exten => 500,103,Voicemail2,b500 exten => 550,1,SetMusicOnHold(random) exten => 550,2,Dial(SIP/bt-rlm,30,Ttr) exten => 550,3,Voicemail,u550 exten => 550,103,Voicemail,b550 exten => 555,1,SetMusicOnHold(random) exten => 555,2,Dial(ZAP/g4/211)...
2010 Aug 30
2
help with dialplan
...et(CHANNEL(musicclass)=QCI) exten => s,n,Set(TIMEOUT(digit)=5) exten => s,n,Set(TIMEOUT(response)=10) exten => s,n,Background(thank-you-for-calling) exten => s,n,Dial(${QPHONE0}&${QPHONE1}&${QPHONE2}&${QPHONE3}&${QPHONE4}&${QPHONE5}&$ {QPHONE6}&${QPHONE7},40,Ttr) exten => s,n,Hangup [incoming2] include => from-internal include => parkedcalls exten => s,1,Answer exten => s,n,Wait(1) exten => s,n,Set(CHANNEL(musicclass)=QCI) exten => s,n,Set(TIMEOUT(digit)=5) exten => s,n,Set(TIMEOUT(response)=10) exten => s,n,Background(thank-you...
2010 Oct 10
1
Help needed for getYahooData in TTR package & writing the Yahoo data to excel
Dear all, I'm totally new to R. Recently I've been trying to use getYahooData in TTR package in order to download stock index daily open/high/low/close. The downloaded data is in the format of Open High Low Close Volume 2000-01-04 18937.45 19187.61 18937.45 19002.86 0 2000-01-05 19003.51 19003.51 18221.82 18542.55 0 2000-01-06...
2006 May 12
3
Dial Command Reference for SIP channel
Hi all. I was reading a sample config someone had posted relating to call forwarding, and in it, they use a Dial command with components that I cannot find any reference to. Can someone point me to a reference which could explain the difference between Dial(SIP/100|20|Ttr,,wW) and Dial(SIP/100,,wW) Specifically, what is the |20|Ttr ? I cannot seem to find any reference which would indicate this is even a valid format for the SIP channel. David Morrow Technical Systems Lead Autodata Solutions Company David.Morrow@Autodata.net http://www.autodatasolutions.com <...
2005 Jun 15
0
Asterisk slow transferring calls
...back(invalid) exten => _X.,6,hangup My extensions_sip.conf [sip] exten => 555,1,SetMusicOnHold(random) exten => 555,2,Dial(ZAP/g4/211) exten => 555,3,Voicemail,u555 exten => 555,103,Voicemail,b555 exten => 556,1,SetMusicOnHold(random) exten => 556,2,Dial(SIP/js-softphone,30,Ttr) exten => 556,3,Voicemail,u556 exten => 556,103,Voicemail,b556 exten => 557,1,SetMusicOnHold(random) exten => 557,2,Dial(SIP/hl,30,Ttr) exten => 557,3,Voicemail,u557 exten => 557,103,Voicemail,b557 exten => 558,1,SetMusicOnHold(random) exten => 558,2,Dial(SIP/zyxtel01,60,T...
2011 Jan 30
1
SMA and EMA in package TTR
Hi, Just wondering for the SMA and EMA in package TTR, is it possible to me to code it so that, say if I need to calculate SMA (x, n=100), when the sample size is less than 100, it will give me the SMA (x, k) where k is the sample size of the data? Right now it only gives me an invalid n error. Thanks! [[alternative HTML version deleted]]
2011 Sep 13
1
Getting Rcpp SEXP data in C++
Friends I am looking at Rcpp and I am a bit stuck on a simple matter. (I am calling R from c++, if there is a better way...) Given this simple example using the TTR package and the SMA function which returns a simple moving average.... Rcpp::NumericVector rv; for(int i = 0; i < 100; i++){ rv.push_back(rand()); } Rcpp::Environment TTR("package:TTR"); Rcpp::Function sma = TTR["SMA"]; SEXP sma_res = sma(rv); How...
2010 May 17
1
Isn't aggreate.zoo supposed to work with POSIXct (zoo/TTR/xts issue)?
library(xts) library(TTR) ndx = getYahooData("^NDX") aa = ndx$Close bb = aggregate(aa, as.yearweek, tail, 1) The last operation takes forever, and then the bb dates are messed up. The following produces the desired result: time(aa) = as.Date(time(aa)) bb = aggregate(aa, as.yearweek, tail, 1) The index of ndx...
2010 Aug 15
1
Moving average in R
Hi, I want to fit moving average trend in R. In google, I see that it is in the package 'TTR'. But, I can't install this package. I have used the following code: >install.packages("TTR") But, it says there is no package called 'TTR'. Can you help me? Regards, Suman Dhara [[alternative HTML version deleted]]
2005 Jan 31
1
congestion problem with only one number
...ackage). We have 2 fritz ISDN cards. All is working great. Till I called the bank. It rings one time and then gives me the congestion tone. Here is what I see on the CLI (phone nr obfuscated for privacy reasons): -- Executing Dial("SCCP/michiel-00000004", "Modem/g1:xxxxxxxxxx|50|Ttr") in new stack -- Called g1:0342426530 -- Asked to indicate '3' (Dialing) condition on channel SCCP/michiel-00000004 -- Current tone (36) is equiv to wanted tone (36). Ignoring. -- Modem[i4l]/ttyI3 is busy -- Hungup 'Modem[i4l]/ttyI3' == Everyone is busy/...
2005 Jun 14
2
# no longer working
...amic defaultip=192.168.1.91 type=friend username=10 secret=secret nat=yes qualify=yes context=terrazur callgroup=2 pickupgroup=2 extensions.conf [general] static=yes writeprotect=no [macro-stdexten] include => parkedcalls exten => s,1,DBget(temp=CFIM/${ARG1}) exten => s,102,Dial(${ARG1},,Ttr) [remote] include => parkedcalls ;Incoming lines. exten => 31XXXXXXXXX,1,SetCallerID(${CALLERID}) exten => 31XXXXXXXXX,2,Agi(covide.agi) exten => 31XXXXXXXXX,3,Goto,ringgroup-terrazur|s|1 [ringgroup-terrazur] include => parkedcalls exten => s,1,Wait,1 exten => s,2,DigitTimeo...
2011 Aug 05
2
Which is more efficient?
Greetings all, I am curious to know if either of these two sets of code is more efficient? Example1: ## t-test ## colA <- temp [ , j ] colB <- temp [ , k ] ttr <- t.test ( colA, colB, var.equal=TRUE) tt_pvalue [ i ] <- ttr$p.value or Example2: tt_pvalue [ i ] <- t.test ( temp[ , j ], temp[ , k ], var.equal=TRUE) ------------- I have three loops, i, j, k. One to test the all of <i> files in a directory. One to tease out column <j> an...
2009 May 26
2
Discovery on packages
If I download a package -- how can I explore what it does? For instance, I downloaded the TTR package of off CRAN -- but how can I find out what it does? Is there a type of API doc for each package? JB
2010 May 10
1
Corrupt R installation?
I installed the lattice package, and got an error that R was not able to remove the previous version of lattice. Now my installation seems to be currupt, even affecting other packages. I am getting this error when loading TTR: > library(TTR) Loading required package: xts Loading required package: zoo Error in loadNamespace(i, c(lib.loc, .libPaths())) : there is no package called 'lattice' In addition: Warning messages: 1: package 'TTR' was built under R version 2.10.1 2: package 'xts' was b...
2012 May 22
1
Quantmod, Xts, TTR and Postgresql
...both are amazing products) I'm still very new to this but I came across this issue: I'm trying to do a select from postgres and put the data into and xts object like so: # Libs library('RPostgreSQL') # http://code.google.com/p/rpostgresql/ library('quantmod') library('TTR') library('xts') # http://cran.r-project.org/web/packages/xts/vignettes/xts.pdf # Connect and get data drv <- dbDriver('PostgreSQL') db <- dbConnect(drv, host='localhost', user='postgres', dbname='technica', password='password') fr <- db...
2004 Sep 01
4
Group Dial
Hi everyone, I want to have a group and dial multiple phones/lines simultaneously. If I use this Dial command: exten => 222,2,Dial(${TRUNKBP}/246&SIP/258&${TRUNKBP}/243,20,tTr) ... all phones ring just once, after that only the first one continues ringing and only that one can answer. Can anyone tell me why? thanks! Tomica -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/...
2004 May 22
4
sip call using name in sip.conf
i try to place a call exten => _X.,1,Dial(SIP/${EXTEN}@foo:5061,60,Ttr) where sip.conf has an entry [foo] secret=torture callerid="local ext 103" <19146665555> type=friend fromuser=asterisk auth=both host=dynamic canreinvite=yes context=in-914 mailbox=001 i get May 22 23:11:31 WARNING[140400128]: chan_sip...
2008 Feb 06
1
wilderSum
Hi, Can somebody tell me the formula for "?wilderSum" in TTR package? I mean how are these calculated? BR, Shubha Shubha Karanth | Amba Research Ph +91 80 3980 8031 | Mob +91 94 4886 4510 Bangalore * Colombo * London * New York * San José * Singapore * www.ambaresearch.com This e-mail may contain confidential and/or privileged i...{{dropped:13}}