由买买提看人间百态

topics

全部话题 - 话题: maxrate
(共0页)
m*****k
发帖数: 731
1
来自主题: JobHunting版 - 攒rp,发个G家面经
class QueryLimiter{
private long started = 0;
private int count = 0;
private int maxRate ;
public QueryLimiter(int m){
maxRate = m;
}
public boolean allowRequest(){
long now = SomeAPI.now();
if(now - started > 1000 //1sec ){
started = now;
count = 0;
}
return count }
public void query(Object param){
count++;
//. ...query/email,whatever...
}
}
assuming this class is u... 阅读全帖
l*****y
发帖数: 340
2
来自主题: Investment版 - 新人请教一个bond的问题
手头有几万刀,准备过两年有用,不想买CD了,想试试bond
research了下fidelity上的bond,发现下面这个SIMON PROP GRP LP NOTES (CUSIP
828807BW6),他家的YTM有3.8%,比第二名高出1.7%。新人第一次买,不知道水深水浅
的,但是总是觉得这个事情too good too be true。想请教一下各位前辈,这里面有什
么猫腻吗?为什么这个bond的YTM比别人高出那么多?万望赐教!
https://fixedincome.fidelity.com/ftgw/fi/FIBondDetails?requestType=&
displayFormat=TABLE&cusip=828807BW6&ordersystem=TORD&preferenceName=
https://fixedincome.fidelity.com/ftgw/fi/FIIndividualBondsSearch?
preferenceName=&requestpage=FISearchCorporate&prodmajor=CORP&prodminor=IG... 阅读全帖
(共0页)