Home
last modified time | relevance | path

Searched refs:price (Results 1 – 25 of 6717) sorted by relevance

12345678910>>...269

/dports/textproc/p5-Template-Semantic/Template-Semantic-0.09/t/
H A D07_default-filters.t57 <price>10000</price>
58 <price>1000.00</price>
59 <price>123.45</price>
60 <price>1234.5678</price>
62 <price>.31</price>
63 <price>.3141592</price>
65 <price>3.141592</price>
66 <price>314.1592</price>
75 <price>10,000</price>
77 <price>123.45</price>
[all …]
/dports/databases/powa-web/powa-web-4.0.2/powa/static/bower_components/foundation/scss/foundation/components/
H A D_pricing-tables.scss19 $price-title-bg: $oil !default;
28 $price-money-bg: $vapor !default;
38 $price-bg: $white !default;
56 $price-cta-bg: $white !default;
64 border: $price-table-border;
78 color: $price-title-color;
89 @mixin pricing-table-price {
91 color: $price-money-color;
105 color: $price-desc-color;
119 color: $price-item-color;
[all …]
/dports/textproc/zorba/zorba-2.7.0/test/rbkt/Queries/zorba/windowing/
H A Dtumbling40.xq2 <closing> <symbol>ABC</symbol> <date>2008-01-01</date> <price>105</price> </closing>
3 <closing> <symbol>DEF</symbol> <date>2008-01-01</date> <price>057</price> </closing>
4 <closing> <symbol>ABC</symbol> <date>2008-01-02</date> <price>101</price> </closing>
5 <closing> <symbol>DEF</symbol> <date>2008-01-02</date> <price>054</price> </closing>
6 <closing> <symbol>ABC</symbol> <date>2008-01-03</date> <price>102</price> </closing>
7 <closing> <symbol>DEF</symbol> <date>2008-01-03</date> <price>056</price> </closing>
8 <closing> <symbol>ABC</symbol> <date>2008-01-04</date> <price>103</price> </closing>
19 start $first next $second when $first/price < $second/price
20 end $last next $beyond when $last/price > $beyond/price
24 <start-price>{fn:data($first/price)}</start-price>
[all …]
H A Dtumbling32.xq3 <closing> <date>2008-01-01</date> <price>105</price> </closing>
4 <closing> <date>2008-01-02</date> <price>101</price> </closing>
5 <closing> <date>2008-01-03</date> <price>102</price> </closing>
6 <closing> <date>2008-01-04</date> <price>103</price> </closing>
7 <closing> <date>2008-01-05</date> <price>102</price> </closing>
8 <closing> <date>2008-01-06</date> <price>104</price> </closing>
11 start $first next $second when $first/price < $second/price
12 end $last next $beyond when $last/price > $beyond/price
16 <start-price>{fn:data($first/price)}</start-price>
18 <end-price>{fn:data($last/price)}</end-price>
/dports/finance/py-backtrader/backtrader-1.9.74.123/backtrader/
H A Dposition.py56 self.price = self.price_orig = price
58 self.price = 0.0
71 self.price = price
104 self.price = price
119 return Position(size=self.size, price=self.price)
122 return Position(self.size, self.price).update(size, price)
174 self.price = price
179 self.price = (self.price * oldsize + size * price) / self.size
187 self.price = price
193 self.price = (self.price * oldsize + size * price) / self.size
[all …]
H A Dcomminfo.py169 def get_margin(self, price): argument
183 return price * self.p.mult
192 def getsize(self, price, cash): argument
204 return abs(size) * price
206 def getvaluesize(self, size, price): argument
212 return size * price
214 def getvalue(self, position, price): argument
222 return size * price
226 value += (position.price - price) * size # increased value
244 def confirmexec(self, size, price): argument
[all …]
/dports/deskutils/egroupware/egroupware/projectmanager/inc/
H A Dclass.projectmanager_pricelist_bo.inc.php110 $price['pm_id'] = 0;
114 $prices[] =& $price;
120 if (!isset($price[$key])) $price[$key] = $this->data[$key];
123 $prices[] =& $price;
137 if (!isset($price['pl_id'])) $price['pl_id'] = $this->data['pl_id'];
159 foreach($prices as &$price)
212 foreach($prices as $price)
214 $options[$price['pl_id']] = $price['pl_unit'].' '.$price['pl_title'].
215 ($price['pl_customertitle'] ? ': '.$price['pl_customertitle'] : '').
302 * @param array $price
[all …]
/dports/finance/R-cran-TTR/TTR/src/
H A Dzigzag.c25 double price; member
70 local_max = inflection.price > high[i] ? inflection.price : high[i]; in ttr_zigzag()
71 local_min = inflection.price < low[i] ? inflection.price : low[i]; in ttr_zigzag()
77 signal = (inflection.price >= reference.price) ? 1 : -1; in ttr_zigzag()
96 inflection.price = low[i]; in ttr_zigzag()
101 inflection.price = low[i]; in ttr_zigzag()
109 ((reference.price - inflection.price) * change); in ttr_zigzag()
115 inflection.price = high[i]; in ttr_zigzag()
127 inflection.price = high[i]; in ttr_zigzag()
140 ((inflection.price - reference.price) * change); in ttr_zigzag()
[all …]
/dports/finance/py-backtrader/backtrader-1.9.74.123/tests/
H A Dtest_comminfo.py34 price = 10.0
38 opcost = comm.getoperationcost(size=size, price=price)
39 assert opcost == size * price
41 pos = Position(size=size, price=price)
42 value = comm.getvalue(pos, price)
43 assert value == size * price
45 commcost = comm.getcommission(size, price)
62 price = 10.0
66 opcost = comm.getoperationcost(size=size, price=price)
69 pos = Position(size=size, price=price)
[all …]
H A Dtest_position.py32 price = 10.0
34 pos = position.Position(size=size, price=price)
36 assert pos.price == price
48 assert pos.price == ((size * price) + (upsize * upprice)) / pos.size
49 assert pos.price == nprice
54 price = pos.price
67 assert pos.price == price
68 assert pos.price == nprice
73 price = pos.price
85 assert pos.price == upprice
[all …]
/dports/finance/beancount/beancount-2.3.3/beancount/prices/
H A Dprice_test.py18 from beancount.prices import price
26 PS = price.PriceSource
34 price.setup_cache(None, True)
45 price.reset_cache()
61 price.reset_cache()
78 self.assertIsNone(price._CACHE)
85 self.assertIsNone(price._CACHE)
94 price.setup_cache(tmpfile, False)
128 price.reset_cache()
159 price.reset_cache()
[all …]
/dports/textproc/miller/miller-5.10.2/go/reg-test/expected/
H A Dcase-c-verb-reshape.sh.out3 time item price
21 time Y item price
34 time item price
52 time Y item price
72 mlr --pprint reshape -i X,Y,Z -o item,price then reshape -s item,price ./reg-test/input/reshape-wid…
80 mlr --pprint reshape -s item,price then reshape -i X,Y,Z -o item,price ./reg-test/input/reshape-lon…
81 time item price
100 time=2009-01-01,item=Y,price=2.4520609
103 time=2009-01-02,item=Y,price=0.2154713
118 time=2009-01-01,item=Y,price=2.4520609
[all …]
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/fourn/ajax/
H A DgetSupplierPrices.php62 $price = $productSupplier->fourn_price * (1 - $productSupplier->fourn_remise_percent / 100); variable
69 $title .= price($price, 0, $langs, 0, 0, -1, $conf->currency)."/";
76 $title .= price($unitprice, 0, $langs, 0, 0, -1, $conf->currency)."/".$langs->trans("Unit");
77 $price = $unitprice; variable
80 $label = price($price, 0, $langs, 0, 0, -1, $conf->currency)."/".$langs->trans("Unit");
83 …$prices[] = array("id" => $productSupplier->product_fourn_price_id, "price" => price2num($price, 0…
91 $price = $producttmp->pmp; variable
92price), "label" => $langs->trans("PMPValueShort").': '.price($price, 0, $langs, 0, 0, -1, $conf->c…
96 $price = $producttmp->cost_price; variable
97price), "label" => $langs->trans("CostPrice").': '.price($price, 0, $langs, 0, 0, -1, $conf->curre…
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/fourn/ajax/
H A DgetSupplierPrices.php69 $price = $productSupplier->fourn_price * (1 - $productSupplier->fourn_remise_percent / 100); variable
75 $title .= price($price, 0, $langs, 0, 0, -1, $conf->currency)."/";
81 $title .= price($unitprice, 0, $langs, 0, 0, -1, $conf->currency)."/".$langs->trans("Unit");
82 $price = $unitprice; variable
85 $label = price($price, 0, $langs, 0, 0, -1, $conf->currency)."/".$langs->trans("Unit");
90 …$prices[] = array("id" => $productSupplier->product_fourn_price_id, "price" => price2num($price, 0…
97 $price = $producttmp->pmp; variable
98price), "label" => $langs->trans("PMPValueShort").': '.price($price, 0, $langs, 0, 0, -1, $conf->c…
102 $price = $producttmp->cost_price; variable
103price), "label" => $langs->trans("CostPrice").': '.price($price, 0, $langs, 0, 0, -1, $conf->curre…
/dports/devel/p5-Paws/Paws-0.14/t/10_responses/
H A Dec2-create-reserved-instances-listing.response32 <price>2.5</price>
38 <price>2.5</price>
44 <price>2.5</price>
50 <price>2.0</price>
56 <price>2.0</price>
62 <price>2.0</price>
68 <price>1.5</price>
74 <price>1.5</price>
80 <price>0.7</price>
86 <price>0.7</price>
[all …]
/dports/finance/quantlib/QuantLib-1.20/ql/instruments/
H A Dpayoffs.cpp69 return std::max<Real>(price - strike,0.0); in operator ()()
71 return std::max<Real>(strike - price,0.0); in operator ()()
96 return std::max<Real>(price-strike_,0.0); in operator ()()
98 return std::max<Real>(strike_-price,0.0); in operator ()()
136 return (price-strike_ > 0.0 ? price : 0.0); in operator ()()
138 return (strike_-price > 0.0 ? price : 0.0); in operator ()()
184 Real GapPayoff::operator()(Real price) const { in operator ()()
187 return (price-strike_ >= 0.0 ? price-secondStrike_ : 0.0); in operator ()()
189 return (strike_-price >= 0.0 ? secondStrike_-price : 0.0); in operator ()()
205 return (price>=strike_ && price<secondStrike_) ? price/strike_ : 0.0; in operator ()()
[all …]
/dports/databases/pgFormatter/pgFormatter-5.1/t/test-files/
H A Dex1.sql8 …CT price.col1 AS col1, price.col2 AS col2 , price.col3 AS col3, max(price.col4) AS col4, max(pric…
9 SELECT price.col1 AS col1, price.col2 AS col2 , price.col3 AS col3, max(price.col4) AS col4, max(p…
15 max(price.col7) AS col7
69 ) AS price
70 WHERE price.column1 < 'R45' OR ( price.column2= 'R46'
76 AND price.column3 = 6 )
77 GROUP BY price.column1, price.column2,
83 price.column3, price.column4, price.column5, price.column6, price.column7 ;
/dports/databases/pgFormatter/pgFormatter-5.1/t/test-files/expected/
H A Dex1.sql7 price.col1 AS col1,
8 price.col2 AS col2,
9 price.col3 AS col3,
25 price.col1 AS col1,
26 price.col2 AS col2,
27 price.col3 AS col3,
154 price.column1,
155 price.column2,
161 price.column3,
162 price.column4,
[all …]
/dports/devel/love/love-11.3/src/libraries/lz4/
H A Dlz4opt.h39 int price; member
49 int price = litlen; in LZ4HC_literalsPrice() local
52 return price; in LZ4HC_literalsPrice()
66 return price; in LZ4HC_sequencePrice()
185 cur, opt[cur].price, opt[cur+1].price, cur+1); in LZ4HC_compress_optimal()
188 if ( (opt[cur+1].price <= opt[cur].price) in LZ4HC_compress_optimal()
194 if (opt[cur+1].price <= opt[cur].price) continue; in LZ4HC_compress_optimal()
220 if (price < opt[pos].price) { in LZ4HC_compress_optimal()
224 opt[pos].price = price; in LZ4HC_compress_optimal()
243 price = ((cur > ll) ? opt[cur - ll].price : 0) in LZ4HC_compress_optimal()
[all …]
/dports/textproc/zorba/zorba-2.7.0/test/rbkt/ExpQueryResults/zorba/windowing/
H A Dtumbling40.xml.res3 <start-price>101</start-price>
5 <end-price>103</end-price>
9 <start-price>101</start-price>
11 <end-price>104</end-price>
15 <start-price>054</start-price>
17 <end-price>056</end-price>
21 <start-price>052</start-price>
23 <end-price>059</end-price>
/dports/www/dolibarr13/dolibarr-13.0.5/htdocs/install/mysql/data/
H A Dllx_c_ecotaxe.sql34 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (1, '25…
36 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (3, '32…
37 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (4, '32…
38 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (5, '32…
39 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (6, '32…
40 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (7, '36…
41 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (8, '36…
44 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (11, '3…
45 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (12, '3…
49 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (16, '7…
[all …]
/dports/www/dolibarr/dolibarr-14.0.3/htdocs/install/mysql/data/
H A Dllx_c_ecotaxe.sql34 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (1, '25…
36 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (3, '32…
37 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (4, '32…
38 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (5, '32…
39 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (6, '32…
40 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (7, '36…
41 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (8, '36…
44 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (11, '3…
45 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (12, '3…
49 INSERT INTO llx_c_ecotaxe (rowid, code, label, price, organization, fk_pays, active) VALUES (16, '7…
[all …]
/dports/net/py-softlayer/SoftLayer-5.9.7/SoftLayer/CLI/order/
H A Ditem_list.py87 for price in item.get('prices', []):
88 if not price.get('locationGroupId'):
89 return price.get('id')
98 for price in item['prices']:
99 if not price.get('locationGroupId'):
110 def get_item_price_data(price, item_attribute): argument
113 if item_attribute in price:
114 result = price[item_attribute]
128 for price in location_prices:
133 [price['item']['keyName'], price['id'],
[all …]
/dports/textproc/zorba/zorba-2.7.0/test/rbkt/ExpQueryResults/zorba/hashjoins/
H A D2637.xml.res4 <price>100</price>
9 <price>30</price>
14 <price>30</price>
19 <price>30</price>
24 <price>50</price>
29 <price>50</price>
34 <price>5</price>
39 <price>5</price>
44 <price>10</price>
/dports/games/pioneer/pioneer-20210723/data/libs/
H A DEquipment.lua60 l10n_key="MISSILE_GUIDED", slots="missile", price=50,
66 l10n_key="MISSILE_SMART", slots="missile", price=95,
72 l10n_key="MISSILE_NAVAL", slots="missile", price=160,
88 l10n_key="ECM_BASIC", slots="ecm", price=6000,
93 l10n_key="ECM_ADVANCED", slots="ecm", price=15200,
98 l10n_key="RADAR", slots="radar", price=680,
108 l10n_key="PASSENGER_CABIN", slots="cabin", price=0,
124 l10n_key="AUTOPILOT", slots="autopilot", price=1400,
136 l10n_key="FUEL_SCOOP", slots="scoop", price=3500,
140 l10n_key="CARGO_SCOOP", slots="scoop", price=3900,
[all …]

12345678910>>...269